Beispiel #1
0
 /**
  * Get a list of CSS files required to display the widget properly
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     if ($this->isQuickLookEnabled()) {
         $list[] = $this->getDir() . '/quick_look.css';
     }
     //TODO: Remove after CSS loading feature is added.
     $list[] = 'labels/style.css';
     return array_merge($list, $this->getPopupCSS());
 }
Beispiel #2
0
 /**
  * Get a list of CSS files required to display the widget properly
  *
  * @return array
  */
 public function getCSSFiles()
 {
     $list = parent::getCSSFiles();
     $list[] = $this->getDir() . '/quick_look.css';
     $list[] = 'css/cloud-zoom.css';
     //TODO: Remove after CSS loading feature is added.
     $list[] = 'labels/style.css';
     return array_merge($list, $this->getPopupCSS());
 }