Kalifast_Bug_Reporter/reporter.php
2024-08-08 11:54:23 +02:00

23 lines
662 B
PHP

<?php
require_once(ABSPATH."/wp-content/plugins/EISGE-API-Core/EISGE_Library_Core.php");
/**
* Class Reporter
* This class defines routes for the Kalifast Bug Reporter
*/
class Reporter extends EISGE_Library_Core {
public function getActions(){
return array(
"post_kalifast_ticket" => array(
"mode" => "EDIT",
"guest_mod" => true,
"desc" => "Send a ticket to the Kalifast Application",
"args" => "no_args"
)
);
}
public function post_kalifast_ticket(){
return $this->functionFailed("not_implemented", "Not implemented yet!");
}
}