getPriorities() public static method

public static getPriorities ( ) : string[]
return string[]
示例#1
0
 public function priorityJsonAction()
 {
     $priorities[] = array("key" => "-1", "value" => "-");
     foreach (ApplicationLoggerDb::getPriorities() as $key => $p) {
         $priorities[] = array("key" => $key, "value" => $p);
     }
     $this->_helper->json(array("priorities" => $priorities));
 }
示例#2
0
 public function priorityJsonAction()
 {
     $priorities[] = ["key" => "-1", "value" => "-"];
     foreach (ApplicationLoggerDb::getPriorities() as $key => $p) {
         $priorities[] = ["key" => $key, "value" => $p];
     }
     $this->_helper->json(["priorities" => $priorities]);
 }