2021-11-18 10:49:23 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
2021-11-18 10:49:23 +03:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
|
|
|
* @since v1.5.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Business logic controller.
|
|
|
|
*
|
|
|
|
* Handles general settings related operations.
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
2021-12-07 13:09:34 +03:00
|
|
|
class Business_settings extends EA_Controller {
|
2021-11-18 10:49:23 +03:00
|
|
|
/**
|
|
|
|
* Business_logic constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->model('appointments_model');
|
|
|
|
$this->load->model('customers_model');
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
$this->load->model('roles_model');
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
|
|
|
|
$this->load->library('accounts');
|
|
|
|
$this->load->library('google_sync');
|
|
|
|
$this->load->library('notifications');
|
|
|
|
$this->load->library('synchronization');
|
|
|
|
$this->load->library('timezones');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the settings page.
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2021-12-07 13:09:34 +03:00
|
|
|
session(['dest_url' => site_url('business_settings')]);
|
2021-11-18 10:49:23 +03:00
|
|
|
|
2021-12-07 13:09:34 +03:00
|
|
|
if (cannot('view', PRIV_SYSTEM_SETTINGS))
|
2021-11-18 10:49:23 +03:00
|
|
|
{
|
2021-12-18 19:22:40 +03:00
|
|
|
abort(403, 'Forbidden');
|
2021-11-18 10:49:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$user_id = session('user_id');
|
|
|
|
|
2021-12-18 23:36:25 +03:00
|
|
|
script_vars([
|
|
|
|
'business_settings' => $this->settings_model->get(),
|
|
|
|
'first_weekday' => setting('first_weekday'),
|
|
|
|
'time_format' => setting('time_format'),
|
|
|
|
]);
|
2021-11-18 10:49:23 +03:00
|
|
|
|
2021-12-18 19:22:40 +03:00
|
|
|
html_vars([
|
2021-11-18 10:49:23 +03:00
|
|
|
'page_title' => lang('settings'),
|
|
|
|
'active_menu' => PRIV_SYSTEM_SETTINGS,
|
|
|
|
'user_display_name' => $this->accounts->get_user_display_name($user_id),
|
|
|
|
]);
|
2021-12-18 19:22:40 +03:00
|
|
|
|
|
|
|
$this->load->view('pages/business_settings', html_vars());
|
2021-11-18 10:49:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save general settings.
|
|
|
|
*/
|
|
|
|
public function save()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2021-12-18 19:22:40 +03:00
|
|
|
if (cannot('edit', PRIV_SYSTEM_SETTINGS))
|
2021-11-18 10:49:23 +03:00
|
|
|
{
|
|
|
|
throw new Exception('You do not have the required permissions for this task.');
|
|
|
|
}
|
|
|
|
|
2021-12-18 23:36:25 +03:00
|
|
|
$settings = request('business_settings', []);
|
2021-11-18 10:49:23 +03:00
|
|
|
|
|
|
|
foreach ($settings as $setting)
|
|
|
|
{
|
|
|
|
$existing_setting = $this->settings_model->query()->where('name', $setting['name'])->get()->row_array();
|
|
|
|
|
|
|
|
if ( ! empty($existing_setting))
|
|
|
|
{
|
|
|
|
$setting['id'] = $existing_setting['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->settings_model->save($setting);
|
|
|
|
}
|
|
|
|
|
|
|
|
response();
|
|
|
|
}
|
|
|
|
catch (Throwable $e)
|
|
|
|
{
|
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
2021-12-18 23:36:25 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Apply global working plan to all providers.
|
|
|
|
*/
|
|
|
|
public function apply_global_working_plan()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (cannot('edit', PRIV_SYSTEM_SETTINGS))
|
|
|
|
{
|
|
|
|
throw new Exception('You do not have the required permissions for this task.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$working_plan = request('working_plan');
|
|
|
|
|
|
|
|
$providers = $this->providers_model->get();
|
|
|
|
|
|
|
|
foreach ($providers as $provider)
|
|
|
|
{
|
|
|
|
$this->providers_model->set_setting($provider['id'], 'working_plan', $working_plan);
|
|
|
|
}
|
|
|
|
|
|
|
|
response();
|
|
|
|
}
|
|
|
|
catch (Throwable $e)
|
|
|
|
{
|
|
|
|
json_exception($e);
|
|
|
|
}
|
|
|
|
}
|
2021-11-18 10:49:23 +03:00
|
|
|
}
|