コード例 #1
0
ファイル: Rule.php プロジェクト: Bagelllama/delphinium
 public function getActions()
 {
     $arr = [];
     foreach ($this->assign_actions as $action) {
         $arr[] = $action;
     }
     foreach ($this->filters as $filter) {
         $arr[] = $filter;
     }
     usort($arr, Rule::getOrderCmp());
     return $arr;
 }