2015-11-24 23:48:57 +02: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>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2015-11-24 23:48:57 +02:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
2015-12-30 13:39:36 +02:00
|
|
|
* @since v1.1.0
|
2015-11-24 23:48:57 +02:00
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2015-12-31 00:58:34 +02:00
|
|
|
class Migration_Add_customer_notifications_setting extends CI_Migration {
|
2017-09-15 14:36:37 +03:00
|
|
|
public function up()
|
|
|
|
{
|
2015-11-24 23:48:57 +02:00
|
|
|
$this->load->model('settings_model');
|
2018-04-24 16:26:07 +03:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$this->settings_model->get_setting('customer_notifications');
|
|
|
|
}
|
|
|
|
catch (Exception $exception)
|
|
|
|
{
|
|
|
|
$this->settings_model->set_setting('customer_notifications', '1');
|
|
|
|
}
|
2015-11-24 23:48:57 +02:00
|
|
|
}
|
|
|
|
|
2017-09-15 14:36:37 +03:00
|
|
|
public function down()
|
|
|
|
{
|
2015-11-24 23:48:57 +02:00
|
|
|
$this->load->model('settings_model');
|
2018-04-24 16:26:07 +03:00
|
|
|
|
2015-11-24 23:48:57 +02:00
|
|
|
$this->settings_model->remove_setting('customer_notifications');
|
|
|
|
}
|
|
|
|
}
|