iflrandevu/application/migrations/004_add_date_format_setting...

63 lines
1.6 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
2015-12-02 00:08:04 +02:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
2015-12-02 00:08:04 +02:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.1.0
2015-12-02 00:08:04 +02:00
* ---------------------------------------------------------------------------- */
/**
* Class Migration_Add_date_format_setting
*
* @property CI_Loader load
* @property CI_DB_query_builder db
* @property CI_DB_forge dbforge
* @property Settings_Model settings_model
*/
2015-12-02 00:08:04 +02:00
class Migration_Add_date_format_setting extends CI_Migration {
/**
* Migration_Add_date_format_setting constructor.
*
* @param array $config
*/
public function __construct($config = [])
{
parent::__construct($config);
2015-12-02 00:08:04 +02:00
$this->load->model('settings_model');
}
/**
* Upgrade method.
*
* @throws Exception
*/
public function up()
{
try
{
$this->settings_model->get_setting('date_format');
}
catch (Exception $exception)
{
$this->settings_model->set_setting('date_format', DATE_FORMAT_DMY);
}
2015-12-02 00:08:04 +02:00
}
/**
* Downgrade method.
*
* @throws Exception
*/
public function down()
{
2015-12-02 00:08:04 +02:00
$this->settings_model->remove_setting('date_format');
}
}