mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
33 lines
923 B
PHP
33 lines
923 B
PHP
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||
|
|
||
|
/* ----------------------------------------------------------------------------
|
||
|
* Easy!Appointments - Open Source Web Scheduler
|
||
|
*
|
||
|
* @package EasyAppointments
|
||
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||
|
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
||
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
||
|
* @link http://easyappointments.org
|
||
|
* @since v1.2.0
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
/**
|
||
|
* Appointments Controller
|
||
|
*
|
||
|
* @package Controllers
|
||
|
* @subpackage API
|
||
|
*/
|
||
|
class Appointments extends CI_Controller {
|
||
|
|
||
|
public function get($id = null) {
|
||
|
echo 'hello ' . $id;
|
||
|
}
|
||
|
|
||
|
public function post() {
|
||
|
echo 'post';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* End of file appointments.php */
|
||
|
/* Location: ./application/controllers/appointments.php */
|