Esempio n. 1
0
 /**
  * Saves the access levels to the object backend.
  * 
  * @access public
  */
 protected function saveAccessLevels()
 {
     $this->accessLevelsObjectBackend->saveObject($this->accessLevels);
 }
Esempio n. 2
0
 /**
  * Saves the templates to the object backend.
  * 
  * @access public
  */
 protected function saveTemplates()
 {
     $this->templatesObjectBackend->saveObject($this->templates);
 }
Esempio n. 3
0
 /**
  * Saves the activated modules in the object backend.
  * 
  * @access protected
  */
 protected function saveActivatedModules()
 {
     $this->moduleObjectBackend->saveObject($this->activatedModules);
 }
Esempio n. 4
0
 /**
  * Saves the items to the object backend.
  * 
  * @access public
  */
 protected function saveItems()
 {
     $this->eventAccessObjectBackend->saveObject($this->items);
 }
Esempio n. 5
0
 /**
  * Saves the assets cache to the file backend.
  * 
  * @access public
  */
 protected function saveAssetsCache()
 {
     $this->cachedFilesObjectBackend->saveObject($this->cachedFiles);
 }
Esempio n. 6
0
 /**
  * Saves the registred handlers in the object backend.
  * 
  * @access protected
  */
 protected function saveHandlers()
 {
     $this->handlerObjectBackend->saveObject($this->handlers);
 }
Esempio n. 7
0
 /**
  * Saves the registred data sources in the object backend.
  *
  * @access protected
  */
 protected function saveDataSources()
 {
     $this->dataSourceObjectBackend->saveObject($this->dataSources);
 }
Esempio n. 8
0
 /**
  * Saves the assets cache to the file backend.
  */
 protected function saveAssets()
 {
     $this->assetsObjectBackend->saveObject($this->assets);
 }
Esempio n. 9
0
 /**
  * Saves the routes in the object backend
  * 
  * @access protected
  */
 protected function saveRoutes()
 {
     $this->routeObjectBackend->saveObject($this->routes);
 }