mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
16 lines
350 B
PHP
16 lines
350 B
PHP
<?php
|
|
|
|
require_once APPPATH . '/libraries/REST_Controller.php';
|
|
|
|
class APIv1_Controller extends REST_Controller
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// Loads return messages
|
|
$this->load->helper('message');
|
|
|
|
log_message('debug', 'Called API: '.$_SERVER['PHP_SELF'].$_SERVER['QUERY_STRING']);
|
|
}
|
|
} |