-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display the language key if no translation is available
- Loading branch information
1 parent
b79a17f
commit bc80d2c
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?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.1.0 | ||
* ---------------------------------------------------------------------------- */ | ||
|
||
|
||
if ( ! function_exists('lang')) | ||
{ | ||
/** | ||
* Lang | ||
* | ||
* Fetches a language variable and optionally outputs a form label | ||
* | ||
* @param string $line The language line. | ||
* @param string $for The "for" value (id of the form element). | ||
* @param array $attributes Any additional HTML attributes. | ||
* | ||
* @return string | ||
*/ | ||
function lang(string $line, string $for = '', array $attributes = []): string | ||
{ | ||
/** @var EA_Controller $CI */ | ||
$CI = get_instance(); | ||
|
||
$result = $CI->lang->line($line); | ||
|
||
if ($for !== '') | ||
{ | ||
$result = '<label for="' . $for . '"' . _stringify_attributes($attributes) . '>' . $result . '</label>'; | ||
} | ||
|
||
return $result ?: $line; | ||
} | ||
} |