Esempio n. 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;
 }
Esempio n. 2
0
 /**
  * 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;
 }
Esempio n. 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;
 }
Esempio n. 4
0
 /**
  * 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;
 }
Esempio n. 5
0
 /**
  * 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;
 }
Esempio n. 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;
 }
Esempio n. 7
0
 /**
  * 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'));
 }
 /**
  * Register CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'modules_manager/installation_type/css/style.css';
     return $list;
 }
Esempio n. 9
0
 /**
  * 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;
 }
Esempio n. 10
0
 /**
  * getJSFiles
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'button/css/delete_user.css';
     return $list;
 }
Esempio n. 11
0
 /**
  * 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;
 }