Created new render helper for the timezone dropdown.

This commit is contained in:
Alex Tselegidis 2020-03-29 14:05:34 +02:00
parent 26efa3c410
commit c0cd2346fd
3 changed files with 44 additions and 1 deletions

View File

@ -65,7 +65,7 @@ $autoload['libraries'] = ['database'];
| $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = ['custom_exceptions', 'url', 'file', 'language', 'asset', 'config'];
$autoload['helper'] = ['custom_exceptions', 'url', 'file', 'language', 'asset', 'config', 'render'];
/*

View File

@ -0,0 +1,33 @@
<?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 - 2020, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.4.0
* ---------------------------------------------------------------------------- */
/**
* Render the HTML output of a timezone dropdown element.
*
* @param string $attributes HTML element attributes of the dropdown.
* @return false|string
*/
function render_timezone_dropdown($attributes = '')
{
$framework = get_instance();
$framework->load->model('timezones_model');
$timezones = $framework->timezones_model->to_grouped_array();
ob_start();
require __DIR__ . '/../views/partial/timezone_dropdown.php';
return ob_get_clean();
}

View File

@ -0,0 +1,10 @@
<select <?= $attributes ?>>
<option value="UTC">UTC</option>
<?php foreach ($timezones as $continent => $entries): ?>
<optgroup label="<?= $continent ?>">
<?php foreach ($entries as $value => $name): ?>
<option value="<?= $value ?>"><?= $name ?></option>
<?php endforeach ?>
</optgroup>
<?php endforeach ?>
</select>