Ejemplo n.º 1
0
 /**
  * Возвращает фильтр для выборки файлов.
  */
 protected function getNodeFilter()
 {
     $filter = parent::getNodeFilter();
     switch ($this->type) {
         case 'multimedia':
             $filter['filetype?|'] = array('audio/%', 'video/%', 'application/x-shockwave-flash');
             break;
         case 'picture':
             $filter['filetype?|'] = 'image/%';
             break;
         case 'office':
             $filter['filename?|'] = array('%.doc', '%.docx', '%.rtf', '%.xsl', '%.xlsx', '%.pdf', '%.ppt', '%.pptx', '%.pps', '%.ppsx');
             break;
     }
     return $filter;
 }