* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.0.0 * ---------------------------------------------------------------------------- */ /** * Service categories controller. * * Handles the service categories related operations. * * @package Controllers */ class Service_categories extends EA_Controller { /** * Service_categories constructor. */ public function __construct() { parent::__construct(); $this->load->model('service_categories_model'); $this->load->model('roles_model'); $this->load->library('accounts'); $this->load->library('timezones'); } /** * Render the backend services page. * * On this page admin users will be able to manage services, which are eventually selected by customers during the * booking process. */ public function index() { session(['dest_url' => site_url('service_categories')]); if (cannot('view', 'services')) { show_error('Forbidden', 403); } $user_id = session('user_id'); $role_slug = session('role_slug'); $this->load->view('pages/service_categories_page', [ 'page_title' => lang('services'), 'active_menu' => PRIV_SERVICES, 'user_display_name' => $this->accounts->get_user_display_name($user_id), 'timezones' => $this->timezones->to_array(), 'privileges' => $this->roles_model->get_permissions_by_slug($role_slug), ]); } /** * Filter services by the provided keyword. */ public function search() { try { if (cannot('view', 'services')) { show_error('Forbidden', 403); } $keyword = request('keyword', ''); $order_by = 'name ASC'; $limit = request('limit', 1000); $offset = 0; $service_categories = $this->service_categories_model->search($keyword, $limit, $offset, $order_by); json_response($service_categories); } catch (Throwable $e) { json_exception($e); } } /** * Create a service. */ public function create() { try { $service_category = json_decode(request('service_category'), TRUE); if (cannot('add', 'services')) { show_error('Forbidden', 403); } $service_category_id = $this->service_categories_model->save($service_category); json_response([ 'success' => TRUE, 'id' => $service_category_id ]); } catch (Throwable $e) { json_exception($e); } } /** * Update a service. */ public function update() { try { $service_category = json_decode(request('service_category'), TRUE); if (cannot('edit', 'services')) { show_error('Forbidden', 403); } $service_category_id = $this->service_categories_model->save($service_category); json_response([ 'success' => TRUE, 'id' => $service_category_id ]); } catch (Throwable $e) { json_exception($e); } } /** * Remove a service. */ public function destroy() { try { if (cannot('delete', 'services')) { show_error('Forbidden', 403); } $service_category_id = request('service_category_id'); $this->service_categories_model->delete($service_category_id); json_response([ 'success' => TRUE, ]); } catch (Throwable $e) { json_exception($e); } } }