Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/auth/cas/languages.php
Go to the documentation of this file.
00001 <?php
00002 
00003 $caslangprefix = 'PHPCAS_LANG_';
00004 $CASLANGUAGES = array ();
00005 
00006 $consts = get_defined_constants(true);
00007 foreach ($consts['user'] as $key => $value) {
00008     if (substr($key, 0, strlen($caslangprefix)) == $caslangprefix) {
00009         $CASLANGUAGES[$value] = $value;
00010     }
00011 }
00012 if (empty($CASLANGUAGES)) {
00013     $CASLANGUAGES = array ('english' => 'english',
00014                            'french'  => 'french');
00015 }
 All Data Structures Namespaces Files Functions Variables Enumerations