2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2019-10-18 05:37:52 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* 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
|
2019-10-18 05:37:52 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.4.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Class Migration_Add_require_phone_number_setting
|
|
|
|
*
|
|
|
|
* @property CI_Loader load
|
|
|
|
* @property CI_DB_query_builder db
|
|
|
|
* @property CI_DB_forge dbforge
|
|
|
|
* @property Settings_Model settings_model
|
|
|
|
*/
|
2019-10-18 05:37:52 +03:00
|
|
|
class Migration_Add_require_phone_number_setting extends CI_Migration {
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Migration_Add_require_phone_number_setting constructor.
|
|
|
|
*
|
|
|
|
* @param array $config
|
|
|
|
*/
|
|
|
|
public function __construct($config = [])
|
2019-10-18 05:37:52 +03:00
|
|
|
{
|
2020-04-22 22:48:56 +03:00
|
|
|
parent::__construct($config);
|
|
|
|
|
2019-10-18 05:37:52 +03:00
|
|
|
$this->load->model('settings_model');
|
2020-04-22 22:48:56 +03:00
|
|
|
}
|
2019-10-18 05:37:52 +03:00
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Upgrade method.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2019-10-18 05:37:52 +03:00
|
|
|
try
|
|
|
|
{
|
|
|
|
$this->settings_model->get_setting('require_phone_number');
|
|
|
|
}
|
|
|
|
catch (Exception $exception)
|
|
|
|
{
|
|
|
|
$this->settings_model->set_setting('require_phone_number', '1');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 22:48:56 +03:00
|
|
|
/**
|
|
|
|
* Downgrade method.
|
|
|
|
*/
|
2019-10-18 05:37:52 +03:00
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
$this->settings_model->remove_setting('require_phone_number');
|
|
|
|
}
|
|
|
|
}
|