Example #1
0
 /**
  * Return internal list name
  *
  * @return string
  */
 protected function getListName()
 {
     return parent::getListName() . '.create_backup';
 }
Example #2
0
 /**
  * Return internal list name
  *
  * @return string
  */
 protected function getListName()
 {
     return parent::getListName() . '.entries_list';
 }
Example #3
0
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) array_filter($this->getCustomFiles());
 }
Example #4
0
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) $this->getMessages();
 }
Example #5
0
 /**
  * Return internal list name
  *
  * @return string
  */
 protected function getListName()
 {
     return parent::getListName() . '.buttons';
 }
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) array_filter($this->getDisabledModulesHooks());
 }
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) array_filter($this->getPreUpgradeWarningModules());
 }
Example #8
0
 /**
  * Add some JS files
  *
  * @return array
  */
 public function getJSFiles()
 {
     $list = parent::getJSFiles();
     $list[] = 'upgrade/step/ready_to_install/buttons/controller.js';
     return $list;
 }
Example #9
0
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) $this->getUpgradeNotes();
 }