aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/application/helpers/language_helper.php
blob: 143952081ecb4c863b9fadff6d9e0439e98ef975 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
 * Class and Function List:
 * Function list:
 * - lang()
 * - random_expire_msg()
 * Classes list:
 */

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($index, $id = '') 
	{
		$CI = & get_instance();
		$line = $CI->lang->line($index);
		
		if ($id != '') 
		{
			$line = '<label for="' . $id . '">' . $line . "</label>";
		}
		return ($line != '' ? $line : '[' . $index . ']');
	}
}
/**
 * Random expire msg
 *
 * Displays a random expire message
 *
 * @access	public
 * @return	string
 */

if (!function_exists('random_expire_msg')) 
{
	
	function random_expire_msg() 
	{
		$CI = & get_instance();
		$expires = $CI->config->item('expires');
		return $expires[rand(0, sizeof($expires) - 1) ];
	}
}

// ------------------------------------------------------------------------
/* End of file language_helper.php */


/* Location: ./system/helpers/language_helper.php */

© 2014-2024 Faster IT GmbH | imprint | privacy policy