コード例 #1
0
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     // Include create return page widget styles to show the page properly in the popup window
     $list[] = 'modules/XC/CanadaPost/products_return/create/style.css';
     return $list;
 }
コード例 #2
0
ファイル: FileSelector.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'file_selector/style.css';
     // TODO: dynamic CSS inclusion
     $list[] = 'browse_server/style.css';
     return $list;
 }
コード例 #3
0
 /**
  * getCSSFiles
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     foreach ($this->getWidgets() as $widget) {
         $list = array_merge($list, $this->getWidget(array(), $widget)->getCSSFiles());
     }
     return $list;
 }
コード例 #4
0
ファイル: Install.php プロジェクト: kingsj/core
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     // :TODO: must be taken from LICENSE module widget
     $list[] = 'modules_manager/license/css/style.css';
     // :TODO: must be taken from SwitchButton widget
     $list[] = \XLite\View\Button\SwitchButton::SWITCH_CSS_FILE;
     $list[] = 'modules_manager/installation_type/css/style.css';
     return $list;
 }
コード例 #5
0
ファイル: AddMethod.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'shipping/add_method/style.css';
     $onlineCarrierLink = new \XLite\View\Button\Shipping\OnlineCarrier();
     $list = array_merge($list, $onlineCarrierLink->getCSSFiles());
     $shippingTypes = new \XLite\View\Tabs\ShippingType();
     $list = array_merge($list, $shippingTypes->getCSSFiles());
     $shippingMarkups = new \XLite\View\ItemsList\Model\Shipping\Markups();
     $list = array_merge($list, $shippingMarkups->getCSSFiles());
     return $list;
 }
コード例 #6
0
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'modules/CDev/PINCodes/add_pin_codes_button/style.css';
     return $list;
 }
コード例 #7
0
ファイル: CredentialsForm.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     return array_merge(parent::getCSSFiles(), $this->getWidget(array(), '\\XLite\\View\\Button\\ProgressState')->getCSSFiles(), array('modules/XC/PitneyBowes/configuration/popups.css'));
 }
コード例 #8
0
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'modules_manager/installation_type/css/style.css';
     return $list;
 }
コード例 #9
0
ファイル: TrialNotice.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Register CSS files
  * TODO: should be loaded in popup; remove after loading will be fixed
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'trial_notice/css/style.css';
     return $list;
 }
コード例 #10
0
ファイル: DeleteUser.php プロジェクト: kirkbauer2/kirkxc
 /**
  * getJSFiles
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'button/css/delete_user.css';
     return $list;
 }
コード例 #11
0
ファイル: ActivateKey.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Register CSS files
  * TODO: should be loaded in popup; remove after loading will be fixed
  * 
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'modules_manager/activate_key/css/style.css';
     return $list;
 }