예제 #1
0
파일: filter.php 프로젝트: Niqpue/zippyerp
 /**
  * Возвращает  фильтр  из  сесии  по имени  фильтра
  * 
  * @param mixed $name
  * @return Filter
  */
 public static function getFilter($name)
 {
     $filter = \ZippyERP\System\System::getSession()->filter[$name];
     if (!isset($filter)) {
         $filter = new Filter();
         \ZippyERP\System\System::getSession()->filter[$name] = $filter;
     }
     return $filter;
 }