Added migration class for the captcha setting.

This commit is contained in:
Alex Tselegidis 2015-12-30 12:39:36 +01:00
parent f284bf4047
commit 494e5e53a1
5 changed files with 28 additions and 4 deletions

View file

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to.
|
*/
$config['migration_version'] = 4; // current
$config['migration_version'] = 5; // current
/*

View file

@ -8,7 +8,7 @@
* @copyright Copyright (c) 2013 - 2015, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
* @since v1.1.0
* ---------------------------------------------------------------------------- */
class Migration_Add_google_analytics_setting extends CI_Migration {

View file

@ -8,7 +8,7 @@
* @copyright Copyright (c) 2013 - 2015, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
* @since v1.1.0
* ---------------------------------------------------------------------------- */
class Migration_Add_google_analytics_setting extends CI_Migration {

View file

@ -8,7 +8,7 @@
* @copyright Copyright (c) 2013 - 2015, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
* @since v1.1.0
* ---------------------------------------------------------------------------- */
class Migration_Add_date_format_setting extends CI_Migration {

View file

@ -0,0 +1,24 @@
<?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 - 2015, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.1.0
* ---------------------------------------------------------------------------- */
class Migration_Add_require_captcha_setting extends CI_Migration {
public function up() {
$this->load->model('settings_model');
$this->settings_model->set_setting('require_captcha', '1');
}
public function down() {
$this->load->model('settings_model');
$this->settings_model->remove_setting('require_captcha');
}
}