'expressoCalendar', 'nonavbar' => true, 'noheader' => true ); } require_once '../../header.session.inc.php'; // Load the lang of the module. if(!$_SESSION['phpgw_info']['expressoCalendar']['lang']) { $array_keys = array(); $fn = '../setup/phpgw_'.$_SESSION['calendar']['user']['preferences']['common']['lang'].'.lang'; if (file_exists($fn)){ $fp = fopen($fn,'r'); while ($data = fgets($fp,16000)) { list($message_id,$app_name,$null,$content) = explode("\t",substr($data,0,-1)); $_SESSION['phpgw_info']['expressoCalendar']['lang'][$message_id] = $content; } fclose($fp); } } $script = "array_lang = new Array();"; foreach($_SESSION['phpgw_info']['expressoCalendar']['lang'] as $key => $value) $script .= "array_lang['".str_replace("'","\'",strtolower($key))."'] = '".str_replace("'","\'",$value)."';\n"; echo $script; ?>