Remove unused "render" helper file from the project as it is no longer used (use the components instead).

This commit is contained in:
Alex Tselegidis 2022-02-10 20:57:38 +01:00
parent 3d71f019e2
commit c133b24874
2 changed files with 0 additions and 70 deletions

View File

@ -78,7 +78,6 @@ $autoload['helper'] = [
'password',
'path',
'permission',
'render',
'routes',
'session',
'setting',

View File

@ -1,69 +0,0 @@
<?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.4.0
* ---------------------------------------------------------------------------- */
/**
* Render the HTML output of a timezone dropdown element.
*
* @param string $attributes HTML element attributes of the dropdown.
*
* @return string
*/
function render_timezone_dropdown(string $attributes = ''): string
{
$CI = get_instance();
$CI->load->library('timezones');
$timezones = $CI->timezones->to_grouped_array();
return $CI->load->view('components/timezone_dropdown', [
'attributes' => $attributes,
'timezones' => $timezones
], TRUE);
}
/**
* Render the language script tag.
*
* @param string $attributes HTML element attributes of the script element.
*
* @return string
*/
function render_language_script(string $attributes = ''): string
{
$CI = get_instance();
html_vars([
'attributes' => $attributes,
]);
return $CI->load->view('components/language_script', html_vars(), TRUE);
}
/**
* Render the global variables script tag.
*
* @param string $attributes HTML element attributes of the script element.
*
* @return string
*/
function render_global_variables_script(string $attributes = ''): string
{
$CI = get_instance();
html_vars([
'attributes' => $attributes,
]);
return $CI->load->view('components/global_variables_script', html_vars(), TRUE);
}