Example #1
0
 /**
  * @return bool
  */
 public function execute()
 {
     $this->init();
     // Get Current TableId & Negate
     $this->currentTableId = $this->database->getCurrentTableId() ? 0 : 1;
     // Indexing Extensions
     $this->indexingExtensions();
     // Indexing Files
     $this->indexingFiles();
     // Indexing Labels
     $this->indexingLabels();
     // Indexing Translations
     $this->indexingTranslations();
     // Switch CurrentTableId
     $this->database->setCurrentTableId($this->currentTableId);
     // Add Scheduler Check To Localconf & Mark Configuration Changes As 'OK'
     $this->confObj->setSchedulerCheckAndChangedConfiguration();
     return TRUE;
 }