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