You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
|
/** |
|
* CodeIgniter |
|
* |
|
* An open source application development framework for PHP 5.1.6 or newer |
|
* |
|
* @package CodeIgniter |
|
* @author ExpressionEngine Dev Team |
|
* @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. |
|
* @license http://codeigniter.com/user_guide/license.html |
|
* @link http://codeigniter.com |
|
* @since Version 1.0 |
|
* @filesource |
|
*/ |
|
|
|
// ------------------------------------------------------------------------ |
|
|
|
/** |
|
* CodeIgniter Language Helpers |
|
* |
|
* @package CodeIgniter |
|
* @subpackage Helpers |
|
* @category Helpers |
|
* @author ExpressionEngine Dev Team |
|
* @link http://codeigniter.com/user_guide/helpers/language_helper.html |
|
*/ |
|
|
|
// ------------------------------------------------------------------------ |
|
|
|
/** |
|
* Lang |
|
* |
|
* Fetches a language variable and optionally outputs a form label |
|
* |
|
* @access public |
|
* @param string the language line |
|
* @param string the id of the form element |
|
* @return string |
|
*/ |
|
if ( ! function_exists('lang')) |
|
{ |
|
function lang($line, $id = '') |
|
{ |
|
$CI =& get_instance(); |
|
$line = $CI->lang->line($line); |
|
|
|
if ($id != '') |
|
{ |
|
$line = '<label for="'.$id.'">'.$line."</label>"; |
|
} |
|
|
|
return $line; |
|
} |
|
} |
|
|
|
// ------------------------------------------------------------------------ |
|
/* End of file language_helper.php */ |
|
/* Location: ./system/helpers/language_helper.php */ |