* @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 */