示例#1
0
 public function addCssLink($css)
 {
     $csss = unflatten($css);
     $exceptions = array();
     foreach ($csss as $css) {
         try {
             parent::addCssLink(self::getCssPath($css));
         } catch (SkinFileNotFoundException $e) {
             $exceptions[] = $e;
         }
     }
     return SkinFileNotFoundException::merge($exceptions);
 }