mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
102 lines
2.8 KiB
PHP
102 lines
2.8 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Online Appointment Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.5.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
class Migration_Add_booking_field_settings extends EA_Migration {
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $fields = [
|
|
'first_name' => [
|
|
'display' => '1',
|
|
'require' => '1',
|
|
],
|
|
'last_name' => [
|
|
'display' => '1',
|
|
'require' => '1',
|
|
],
|
|
'email' => [
|
|
'display' => '1',
|
|
'require' => '1',
|
|
],
|
|
'phone_number' => [
|
|
'display' => '1',
|
|
'require' => '1',
|
|
],
|
|
'address' => [
|
|
'display' => '1',
|
|
'require' => '0',
|
|
],
|
|
'city' => [
|
|
'display' => '1',
|
|
'require' => '0',
|
|
],
|
|
'zip_code' => [
|
|
'display' => '1',
|
|
'require' => '0',
|
|
],
|
|
'notes' => [
|
|
'display' => '1',
|
|
'require' => '0',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* Upgrade method.
|
|
*/
|
|
public function up()
|
|
{
|
|
foreach ($this->fields as $field => $props)
|
|
{
|
|
foreach ($props as $prop => $value)
|
|
{
|
|
$setting_name = $prop . '_' . $field;
|
|
|
|
if ($this->db->get_where('settings', ['name' => $setting_name])->num_rows())
|
|
{
|
|
$setting = $this->db->get_where('settings', ['name' => $setting_name])->row_array();
|
|
|
|
$value = $setting['value']; // Use existing value.
|
|
|
|
$this->db->delete('settings', ['name' => $setting_name]);
|
|
}
|
|
|
|
if ( ! $this->db->get_where('settings', ['name' => $setting_name])->num_rows())
|
|
{
|
|
$this->db->insert('settings', [
|
|
'name' => $setting_name,
|
|
'value' => $value
|
|
]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Downgrade method.
|
|
*/
|
|
public function down()
|
|
{
|
|
foreach ($this->fields as $field => $props)
|
|
{
|
|
foreach ($props as $prop => $value)
|
|
{
|
|
$setting_name = $prop . '_' . $field;
|
|
|
|
if ($this->db->get_where('settings', ['name' => $setting_name])->num_rows())
|
|
{
|
|
$this->db->delete('settings', ['name' => $setting_name]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|