예제 #1
0
파일: AProduct.php 프로젝트: kingsj/core
 /**
  * Get a list of CSS files required to display the widget properly
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     // Static call of the non-static function
     $list[] = self::getDir() . '/products_list.css';
     return $list;
 }
예제 #2
0
파일: AModel.php 프로젝트: kewaunited/xcart
 /**
  * Get a list of CSS files
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = $this->getDir() . '/model/style.css';
     return $list;
 }
예제 #3
0
 /**
  * Get a list of CSS files required to display the widget properly
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'modules/CDev/FeaturedProducts/featuredProducts/style.css';
     return $list;
 }
예제 #4
0
 /**
  * Get a list of CSS files required to display the widget properly
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = 'modules/XC/Reviews/reviews_page/style.css';
     $list[] = 'modules/XC/Reviews/vote_bar/vote_bar.css';
     return $list;
 }