コード例 #1
0
ファイル: CreateBackup.php プロジェクト: kewaunited/xcart
 /**
  * Return internal list name
  *
  * @return string
  */
 protected function getListName()
 {
     return parent::getListName() . '.create_backup';
 }
コード例 #2
0
ファイル: EntriesList.php プロジェクト: kewaunited/xcart
 /**
  * Return internal list name
  *
  * @return string
  */
 protected function getListName()
 {
     return parent::getListName() . '.entries_list';
 }
コード例 #3
0
ファイル: ModifiedFiles.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) array_filter($this->getCustomFiles());
 }
コード例 #4
0
ファイル: StatusMessages.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) $this->getMessages();
 }
コード例 #5
0
ファイル: Buttons.php プロジェクト: kingsj/core
 /**
  * Return internal list name
  *
  * @return string
  */
 protected function getListName()
 {
     return parent::getListName() . '.buttons';
 }
コード例 #6
0
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) array_filter($this->getDisabledModulesHooks());
 }
コード例 #7
0
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) array_filter($this->getPreUpgradeWarningModules());
 }
コード例 #8
0
ファイル: Buttons.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Add some JS files
  *
  * @return array
  */
 public function getJSFiles()
 {
     $list = parent::getJSFiles();
     $list[] = 'upgrade/step/ready_to_install/buttons/controller.js';
     return $list;
 }
コード例 #9
0
ファイル: UpgradeNotes.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Check widget visibility
  *
  * @return boolean
  */
 protected function isVisible()
 {
     return parent::isVisible() && (bool) $this->getUpgradeNotes();
 }