Example #1
0
 public function getRecordings($lead_id)
 {
     $records = null;
     $a = $this->query("SELECT location ,  start_time, length_in_sec FROM recording_log WHERE lead_id = " . Std::string($lead_id) . " ORDER BY start_time DESC");
     $records = new _hx_array($a);
     $rc = $this->num_rows;
     haxe_Log::trace("" . _hx_string_rec($rc, "") . " == " . _hx_string_rec($records->length, ""), _hx_anonymous(array("fileName" => "Clients.hx", "lineNumber" => 292, "className" => "model.Clients", "methodName" => "getRecordings")));
     return php_Lib::toPhpArray($records->filter(array(new _hx_lambda(array(&$lead_id, &$rc, &$records), "model_Clients_13"), 'execute')));
 }