Пример #1
0
 /**
  * Gets a JSON-formatted list of the Feature Recognition Methods which have
  * associated events for the requested time window, sorted by event type
  *
  * @return void
  */
 public function getEventFRMs()
 {
     include_once HV_ROOT_DIR . '/../src/Event/HEKAdapter.php';
     $hek = new Event_HEKAdapter();
     header('Content-type: application/json');
     echo $hek->getEventFRMs($this->_params['startTime'], $this->_options);
 }