2018-03-07 00:46:33 +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>
|
|
|
|
* @copyright Copyright (c) 2013 - 2018, Alex Tselegidis
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.3.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
class Migration_Add_time_format_setting extends CI_Migration {
|
|
|
|
public function up()
|
|
|
|
{
|
2018-04-24 16:26:07 +03:00
|
|
|
$this->load->model('settings_model');
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$this->settings_model->get_setting('time_format');
|
|
|
|
}
|
|
|
|
catch (Exception $exception)
|
|
|
|
{
|
|
|
|
$this->settings_model->set_setting('time_format', 'regular');
|
|
|
|
}
|
2018-03-07 00:46:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function down()
|
|
|
|
{
|
2018-04-24 16:26:07 +03:00
|
|
|
$this->load->model('settings_model');
|
|
|
|
|
|
|
|
$this->settings_model->remove_setting('time_format');
|
2018-03-07 00:46:33 +03:00
|
|
|
}
|
|
|
|
}
|