mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
085fed5284
undestand what is the called restful web service
16 lines
325 B
PHP
16 lines
325 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']);
|
|
}
|
|
} |