getPriorities() public static méthode

public static getPriorities ( ) : string[]
Résultat string[]
Exemple #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));
 }
Exemple #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]);
 }