iflrandevu/application/helpers/routes_helper.php

51 lines
1.9 KiB
PHP
Raw Normal View History

2021-11-06 12:18:46 +03:00
<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment Scheduler
2021-11-06 12:18:46 +03:00
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2021-12-18 19:43:45 +03:00
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
2021-11-06 12:18:46 +03:00
* @since v1.3.0
* ---------------------------------------------------------------------------- */
if ( ! function_exists('route_api_resource'))
{
/**
* Define a route for an API resource (includes index, store, update and delete callbacks).
*
* @param array $route Route config.
* @param string $resource Resource name.
* @param string|null $prefix URL prefix (e.g. api/v1/).
*/
function route_api_resource(array &$route, string $resource, string $prefix = '')
{
$route[$prefix . $resource]['post'] = 'api/v1/' . $resource . '_api_v1/store';
$route[$prefix . $resource . '/(:num)']['put'] = 'api/v1/' . $resource . '_api_v1/update/$1';
$route[$prefix . $resource . '/(:num)']['delete'] = 'api/v1/' . $resource . '_api_v1/destroy/$1';
$route[$prefix . $resource]['get'] = 'api/v1/' . $resource . '_api_v1/index';
$route[$prefix . $resource . '/(:num)']['get'] = 'api/v1/' . $resource . '_api_v1/show/$1';
}
}
2021-12-17 10:45:28 +03:00
if ( ! function_exists('is_callback'))
2021-12-17 10:45:28 +03:00
{
/**
* Check whether the current request matches the provided controller/method callback.
2021-12-17 10:45:28 +03:00
*
* @param string $class Controller class name.
* @param string $method Controller method name.
*
* @return bool
2021-12-17 10:45:28 +03:00
*/
function is_callback(string $class, string $method): bool
2021-12-17 10:45:28 +03:00
{
/** @var EA_Controller $CI */
$CI =& get_instance();
return $CI->router->class === $class && $CI->router->method === $method;
2021-12-17 10:45:28 +03:00
}
}