/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/system/helpers/language_helper.php

  • Committer: galaxyAbstractor
  • Date: 2013-04-10 15:49:32 UTC
  • mto: (19.1.5 lenasys)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: galaxyabstractor@gmail.com-20130410154932-4vizlzk0ar5gykvi
* Added an simple admin panel to the codeviewer-cmssy stuff
* Redesigned a bit like the mockups - still stuff to come
* Implemented the codeviewer + admin panel again using the Framework CodeIgniter instead 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
 
2
/**
 
3
 * CodeIgniter
 
4
 *
 
5
 * An open source application development framework for PHP 5.1.6 or newer
 
6
 *
 
7
 * @package             CodeIgniter
 
8
 * @author              ExpressionEngine Dev Team
 
9
 * @copyright   Copyright (c) 2008 - 2011, EllisLab, Inc.
 
10
 * @license             http://codeigniter.com/user_guide/license.html
 
11
 * @link                http://codeigniter.com
 
12
 * @since               Version 1.0
 
13
 * @filesource
 
14
 */
 
15
 
 
16
// ------------------------------------------------------------------------
 
17
 
 
18
/**
 
19
 * CodeIgniter Language Helpers
 
20
 *
 
21
 * @package             CodeIgniter
 
22
 * @subpackage  Helpers
 
23
 * @category    Helpers
 
24
 * @author              ExpressionEngine Dev Team
 
25
 * @link                http://codeigniter.com/user_guide/helpers/language_helper.html
 
26
 */
 
27
 
 
28
// ------------------------------------------------------------------------
 
29
 
 
30
/**
 
31
 * Lang
 
32
 *
 
33
 * Fetches a language variable and optionally outputs a form label
 
34
 *
 
35
 * @access      public
 
36
 * @param       string  the language line
 
37
 * @param       string  the id of the form element
 
38
 * @return      string
 
39
 */
 
40
if ( ! function_exists('lang'))
 
41
{
 
42
        function lang($line, $id = '')
 
43
        {
 
44
                $CI =& get_instance();
 
45
                $line = $CI->lang->line($line);
 
46
 
 
47
                if ($id != '')
 
48
                {
 
49
                        $line = '<label for="'.$id.'">'.$line."</label>";
 
50
                }
 
51
 
 
52
                return $line;
 
53
        }
 
54
}
 
55
 
 
56
// ------------------------------------------------------------------------
 
57
/* End of file language_helper.php */
 
58
/* Location: ./system/helpers/language_helper.php */
 
 
b'\\ No newline at end of file'