installed();// Bugfix - don't use e_LANLIST as it's cached (SESSION) $message = ''; if (e_QUERY) { $tmp = explode('.', e_QUERY); $action = varset($tmp[0]); $sub_action = varset($tmp[1]); $id = varset($tmp[2]); unset($tmp); } if (isset($_POST['submit_prefs']) && isset($_POST['mainsitelanguage'])) { unset($temp); $changes = array(); $temp['multilanguage'] = $_POST['multilanguage']; $temp['multilanguage_subdomain'] = $_POST['multilanguage_subdomain']; $temp['multilanguage_domain'] = $_POST['multilanguage_domain']; $temp['sitelanguage'] = $_POST['mainsitelanguage']; $temp['noLanguageSubs'] = $_POST['noLanguageSubs']; if ($admin_log->logArrayDiffs($temp, $pref, 'LANG_01')) { save_prefs(); // Only save if changes //$mes->addSuccess(LAN_SETSAVED, E_MESSAGE_SUCCESS); } else { $mes->addInfo(LAN_NO_CHANGE); } } // ----------------- delete tables --------------------------------------------- if (isset($_POST['del_existing']) && $_POST['lang_choices']) { $lang = strtolower($_POST['lang_choices']); foreach ($tabs as $del_table) { if ($sql->db_Table_exists($lang."_".$del_table,TRUE)) { echo $del_table." exists
"; $qry = "DROP TABLE ".$mySQLprefix."lan_".$lang."_".$del_table; if (mysql_query($qry)) { $message .= sprintf(LANG_LAN_28, $_POST['lang_choices'].' '.$del_table).'[!br!]'; // can be removed? $mes->addSuccess(sprintf(LANG_LAN_28, $_POST['lang_choices'].' '.$del_table)); } else { $message .= sprintf(LANG_LAN_29, $_POST['lang_choices'].' '.$del_table).'[!br!]'; // can be removed? $mes->addWarning(sprintf(LANG_LAN_29, $_POST['lang_choices'].' '.$del_table)); } } } $admin_log->log_event('LANG_02', $message, E_LOG_INFORMATIVE, ''); $sql->db_ResetTableList(); if ($action == 'modify') $action = 'db';//FIX - force db action when deleting all lan tables } // ----------create tables ----------------------------------------------------- if (isset($_POST['create_tables']) && $_POST['language']) { $table_to_copy = array(); $lang_to_create = array(); foreach ($tabs as $value) { $lang = strtolower($_POST['language']); if (isset($_POST[$value])) { $copdata = ($_POST['copydata_'.$value]) ? 1 : 0; if ($sql->db_CopyTable($value, "lan_".$lang."_".$value, $_POST['drop'], $copdata)) { $message .= sprintf(LANG_LAN_30, $_POST['language'].' '.$value).'[!br!]'; // can be removed? $mes->addSuccess(sprintf(LANG_LAN_30, $_POST['language'].' '.$value)); } else { if (!$_POST['drop']) { $message .= sprintf(LANG_LAN_00, $_POST['language'].' '.$value).'[!br!]'; // can be removed? $mes->addWarning(sprintf(LANG_LAN_00, $_POST['language'].' '.$value)); } else { $message .= sprintf(LANG_LAN_01, $_POST['language'].' '.$value).'[!br!]'; // can be removed? $mes->addWarning(sprintf(LANG_LAN_01, $_POST['language'].' '.$value)); } } } elseif ($sql->db_Table_exists($value,$_POST['language'])) { if ($_POST['remove']) { // Remove table. if (mysql_query("DROP TABLE ".$mySQLprefix."lan_".$lang."_".$value)) { $message .= $_POST['language'].' '.$value.' '.LAN_DELETED.'[!br!]'; // can be removed? $mes->addSuccess($_POST['language'].' '.$value.' '.LAN_DELETED); } else { $message .= sprintf(LANG_LAN_02, $_POST['language'].' '.$value).'[!br!]'; // can be removed? $mes->addWarning(sprintf(LANG_LAN_02, $_POST['language'].' '.$value)); } } else { // leave table. LANG_LAN_32 $message .= sprintf(LANG_LAN_32, $_POST['language'].' '.$value).'[!br!]'; // can be removed? $mes->addInfo(sprintf(LANG_LAN_32, $_POST['language'].' '.$value)); } } } $admin_log->log_event('LANG_03', $message, E_LOG_INFORMATIVE, ''); $sql->db_ResetTableList(); } /* if(isset($message) && $message) { $ns->tablerender(LAN_OK, $message); } */ unset($text); if (!e_QUERY || $action == 'main' && !$_POST['language'] && !$_POST['edit_existing']) { multilang_prefs(); } if (varset($action) == 'db') { multilang_db(); } if (varset($_POST['ziplang']) && varset($_POST['language'])) { if(varset($pref['lancheck'][$_POST['language']]) == 1) { $text = zip_up_lang($_POST['language']); $admin_log->log_event('LANG_04', $_POST['language'], E_LOG_INFORMATIVE, ''); $mes->addInfo(LANG_LAN_25.': '.$text); } else { $mes->addWarning(LANG_LAN_36); } } if (varset($action) == "tools") { show_tools(); if($languagePacks = available_langpacks() ) { e107::getRender()->tablerender(LANG_LAN_34,$languagePacks ); } } function findIncludedFiles($script,$reverse=false) { $data = file_get_contents($script); if(strpos($data, 'e_admin_dispatcher')!==false) { $reverse = false; } $dir = dirname($script); $dir = str_replace("/includes","",$dir); $plugin = basename($dir); if(strpos($script,'admin')!==false || strpos($script,'includes')!==false) // Admin Language files. { $newLangs = array( 0 => $dir."/languages/English/English_admin_".$plugin.".php", 1 => $dir."/languages/English_admin_".$plugin.".php", 2 => $dir."/languages/English_admin.php", 3 => $dir."/languages/English/English_admin.php" ); } else { $newLangs = array( 0 => $dir."/languages/English/English_".$plugin.".php", 1 => $dir."/languages/English_admin_".$plugin.".php", 2 => $dir."/languages/English_front.php", 3 => $dir."/languages/English/English_front.php", 4 => $dir."/languages/English_front.php", 5 => $dir."/languages/English/English_front.php" ); } // if(strpos($data, 'e_admin_dispatcher')!==false) { foreach($newLangs as $path) { if(file_exists($path) && $reverse == false) { return $path; } } } preg_match_all("/.*(include_lan|require_once|include|include_once) ?\((.*e_LANGUAGE.*?\.php)/i",$data,$match); $srch = array(" ",'e_PLUGIN.', 'e_LANGUAGEDIR', '.e_LANGUAGE.', "'", '"', "'."); $repl = array("", e_PLUGIN, e_LANGUAGEDIR, "English", "", "", ""); foreach($match[2] as $lanFile) { $arrt = str_replace($srch,$repl,$lanFile); // if(strpos($arrt,'admin')) { //return $arrt; $arr[] = $arrt; } } return implode(",",$arr); // return $arr[0]; } if(vartrue($_POST['disabled-unused']) && vartrue($_POST['disable-unused-lanfile'])) { $mes = e107::getMessage(); $data = file_get_contents($_POST['disable-unused-lanfile']); $new = disableUnused($data); if(file_put_contents($_POST['disable-unused-lanfile'],$new)) { $mes->addSuccess("Overwriting ".$_POST['disable-unused-lanfile']); } else { $mes->addError("Couldn't overwrite ".$_POST['disable-unused-lanfile']); } $ns->tablerender("Processed".SEP.$_POST['disable-unused-lanfile'],$mes->render()."
".htmlentities($new)."
"); } function disableUnused($data) { $data = str_replace("2008-2010","2008-2013", $data); $data = str_replace(' * $URL$ * $Revision$ * $Id$ * $Author$',"",$data); // TODO FIXME ? $tmp = explode("\n",$data); foreach($tmp as $line) { $ret = getDefined($line); $newline[] = (in_array($ret['define'],$_SESSION['language-tools-unused']) && substr($line,0,2) !='//') ? "// ".$line : $line; } return implode("\n",$newline); } if(varset($_POST['searchDeprecated']) && varset($_POST['deprecatedLans'])) { $mes = e107::getMessage(); // $lanfile = $_POST['deprecatedLans']; $script = $_POST['deprecatedLans']; if(strpos($script,e_ADMIN)!==false) // CORE { $mes->addDebug("Mode: Core Admin Calculated"); //$scriptname = str_replace("lan_","",basename($lanfile)); $lanfile = e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_".basename($script); } else // Plugin { $mes->addDebug("Mode: Search Plugins"); $lanfile = findIncludedFiles($script,vartrue($_POST['deprecatedLansReverse'])); } if(!is_readable($script)) { $mes->addError("Not Readable: ".$script); // $script = $scriptname; // matching files. lan_xxxx.php and xxxx.php } $found = findIncludedFiles($script,vartrue($_POST['deprecatedLansReverse'])); // print_a($found); // Exceptions - same language loaded by several scripts. if($lanfile == e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_e107_update.php") { $script = e_ADMIN."update_routines.php,".e_ADMIN."e107_update.php"; } if($res = unused($lanfile, $script, vartrue($_POST['deprecatedLansReverse']))) { $ns -> tablerender($res['caption'],$mes->render(). $res['text']); } } //FIX - create or edit check if (isset($_POST['create_edit_existing'])) $_POST['edit_existing'] = true; // Grab Language configuration. --- if (isset($_POST['edit_existing'])) { //XXX - JS ok with the current functionality? $text .= "
".$_POST['lang_choices']." "; foreach ($tabs as $table_name) { $installed = 'lan_'.strtolower($_POST['lang_choices'])."_".$table_name; if (stristr($_POST['lang_choices'], $installed) === FALSE) { $text .= " "; } } // =========================================================================== // Drop tables ? isset() if (varset($_POST['create_edit_existing'])) { $baction = 'create'; $bcaption = LANG_LAN_06; } else { $baction = 'update'; $bcaption = LAN_UPDATE; } $text .= "
".ucfirst(str_replace("_", " ", $table_name))."
"; $selected = ($sql->db_Table_exists($table_name,$_POST['lang_choices'])) ? " checked='checked'" : ""; $text .= "
  
".LANG_LAN_07." ".$frm->checkbox('drop', 1)."
".$frm->label(LANG_LAN_08, 'drop', 1)."
".LAN_CONFDELETE." ".$frm->checkbox('remove', 1)."
".$frm->label(LANG_LAN_11, 'remove', 1)."
".$frm->admin_button('create_tables','no-value',$baction,$bcaption)."
"; $ns->tablerender($_POST['lang_choices'], $mes->render().$text); } require_once (e_ADMIN."footer.php"); // --------------------------------------------------------------------------- function multilang_prefs() { global $lanlist; $pref = e107::getPref(); $mes = e107::getMessage(); $frm = e107::getForm(); //XXX Remove later. // Enable only for developers - SetEnv E_ENVIRONMENT develop if(!isset($_SERVER['E_ENVIRONMENT']) || $_SERVER['E_ENVIRONMENT'] !== 'develop') { $lanlist = array('English'); $mes->addInfo("Alpha version currently supports only the English language. After most features are stable and English terms are optimized - translation will be possible."); } $text = "
".LANG_LAN_13." "; $opt = ""; $langs = explode(",",e_LANLIST); foreach($langs as $val) { if($val != $pref['sitelanguage']) { $opt .= ""; } } if($opt) { //TODO LANs and class2.php check. $text .= " "; } $text .= "
".LANG_LAN_14.": "; $sellan = preg_replace("/lan_*.php/i", "", $pref['sitelanguage']); $text .= $frm->selectbox('mainsitelanguage',$lanlist,$sellan,"useValues=1"); $text .= "
".LANG_LAN_12.":
"; $checked = ($pref['multilanguage'] == 1) ? " checked='checked'" : ""; $text .= "
".LANG_LAN_26.":
\n"; $checked = ($pref['noLanguageSubs'] == 1) ? " checked='checked'" : ""; $text .= "
".LANG_LAN_27."
".LANG_LAN_18."
".LANG_LAN_19."
".LANG_LAN_20."
".$val."
Language by Domain Name
Domain determines the site's language. Enter domain without the 'www.'
".$opt."
". $frm->admin_button('submit_prefs','no-value','update',LAN_SAVE)."
\n"; e107::getRender()->tablerender(ADLAN_132.SEP.LAN_PREFS, $mes->render().$text); // "Language Preferences"; } // ---------------------------------------------------------------------------- function table_list() { // grab default language lists. $exclude = array(); $exclude[] = "banlist"; $exclude[] = "banner"; $exclude[] = "cache"; $exclude[] = "core"; $exclude[] = "online"; $exclude[] = "parser"; $exclude[] = "plugin"; $exclude[] = "user"; $exclude[] = "upload"; $exclude[] = "userclass_classes"; $exclude[] = "rbinary"; $exclude[] = "session"; $exclude[] = "tmp"; $exclude[] = "flood"; $exclude[] = "stat_info"; $exclude[] = "stat_last"; $exclude[] = "submit_news"; $exclude[] = "rate"; $exclude[] = "stat_counter"; $exclude[] = "user_extended"; $exclude[] = "user_extended_struct"; $exclude[] = "pm_messages"; $exclude[] = "pm_blocks"; $tables = e107::getDb()->db_TableList('nolan'); // db table list without language tables. return array_diff($tables,$exclude); } // ------------- render form --------------------------------------------------- function multilang_db() { global $lanlist, $tabs; $sql = e107::getDb(); $frm = e107::getForm(); $tp = e107::getParser(); $mes = e107::getMessage(); $pref = e107::getPref(); if (isset($pref['multilanguage']) && $pref['multilanguage']) { // Choose Language to Edit: $text = "
".LANG_LAN_16." "; sort($lanlist); foreach ($lanlist as $e_language) { $installed = array(); if(strtolower($e_language) == $pref['sitelanguage']) { $e_language = ""; } $text .= "\n"; $text .= " "; } $text .= "
".ADLAN_132." ".LANG_LAN_03." ".LAN_OPTIONS."
{$e_language}"; foreach ($tabs as $tab_name) { if ($e_language != $pref['sitelanguage'] && $sql->db_Table_exists($tab_name,$e_language)) { $installed[] = $tab_name; } } $text .= implode(", ",$installed); if ($e_language == $pref['sitelanguage']) { $text .= "".LANG_LAN_17.""; } else { $text .= (!count($installed)) ? "".LANG_LAN_05."" : ""; } $text .= "
\n"; $text .= "
"; if (count($installed)) { //FIXME sprintf $text .= " "; } elseif ($e_language != $pref['sitelanguage']) { // $text .= ""; $text .= $frm->admin_button('create_edit_existing','no-value','create',LAN_CREATE); } $text .= "
"; e107::getRender()->tablerender(ADLAN_132.SEP.LANG_LAN_16, $mes->render().$text); // Languages -> Tables } } // ---------------------------------------------------------------------------- function show_tools() { $frm = e107::getForm(); $mes = e107::getMessage(); include_lan(e_LANGUAGEDIR.e_LANGUAGE."/admin/lan_lancheck.php"); $text = "
".LAN_CHECK_1."
".LAN_CHECK_1." ". $frm->admin_button('language_sel','no-value','other',LAN_CHECK_2)."
"; $text .= "
".LANG_LAN_23." "; $text .= " "; $text .= "
".LANG_LAN_23." ".$frm->admin_button('ziplang','no-value','other',LANG_LAN_24)." Check to share your language-pack with the e107 community.
Search for Deprecated Lans ". $frm->selectbox('deprecatedLansReverse',$depOptions,$_POST['deprecatedLansReverse']). $frm->admin_button('searchDeprecated',"Check",'other')." ".(count($lans) + count($plugs))." files found
"; e107::getRender()->tablerender(ADLAN_132.SEP.LANG_LAN_21, $mes->render().$text); } // ---------------------------------------------------------------------------- function available_langpacks() { $xml = e107::getXml(); $feed = e107::getPref('xmlfeed_languagepacks'); if($rawData = $xml -> loadXMLfile($feed, TRUE)) { if(!varset($rawData['language'])) { return FALSE; } $text .= "
".LANG_LAN_35."
"; $text .= ""; foreach($rawData['language'] as $val) { $att = $val['@attributes']; $name = $att['folder']; $languages[$name] = array( 'name' => $att['name'], 'author' => $att['author'], 'authorURL' => $att['authorURL'], 'folder' => $att['folder'], 'version' => $att['version'], 'date' => $att['date'], 'compatibility' => $att['compatibility'], 'url' => $att['url'] ); } ksort($languages); //TODO LANs $text .= ""; foreach($languages as $value) { $text .= ""; } $text .= "
Name Version Author Release-date Compatible Download
".$value['name']." ".$value['version']." ".$value['author']." ".$value['date']." ".$value['compatibility']." Download Pack
"; return $text; } } function language_adminmenu() { $pref = e107::getPref(); $action = e_QUERY; if ($action == "") { $action = "main"; } if ($action == "modify") { $action = "db"; } $var['main']['text'] = LAN_PREFS; $var['main']['link'] = e_SELF; if (isset($pref['multilanguage']) && $pref['multilanguage']) { $var['db']['text'] = LANG_LAN_03; $var['db']['link'] = e_SELF."?db"; } // $lcnt = explode(",", e_LANLIST); // if (count($lcnt) > 1) // { $var['tools']['text'] = LANG_LAN_21; $var['tools']['link'] = e_SELF."?tools"; // } e107::getNav()->admin(ADLAN_132, $action, $var); } // Zip up the language pack. // =================================================== function zip_up_lang($language) { if (is_readable(e_ADMIN."ver.php")) { include (e_ADMIN."ver.php"); } $tp = e107::getParser(); /* $core_plugins = array( "alt_auth","banner_menu","blogcalendar_menu","calendar_menu","chatbox_menu", "clock_menu","comment_menu","content","featurebox","forum","gsitemap", "links_page","linkwords","list_new","log","login_menu", "newforumposts_main","newsfeed","newsletter","online", "other_news_menu","pdf","pm","poll","rss_menu", "search_menu","siteinfo","trackback","tree_menu","user_menu","userlanguage_menu", "usertheme_menu" ); $core_themes = array("crahan","e107v4a","human_condition","interfectus","jayya", "khatru","kubrick","lamb","leaf","newsroom","reline","sebes","vekna_blue"); */ require_once (e_HANDLER.'pclzip.lib.php'); list($ver, $tmp) = explode(" ", $e107info['e107_version']); $newfile = e_UPLOAD."e107_".$ver."_".$language."_utf8.zip"; $archive = new PclZip($newfile); $core = grab_lans(e_LANGUAGEDIR.$language."/", $language); $plugs = grab_lans(e_PLUGIN, $language); $theme = grab_lans(e_THEME, $language); $file = array_merge($core, $plugs, $theme); $data = implode(",", $file); if ($archive->create($data) == 0) { return $archive->errorInfo(true); } else { if($_POST['contribute_pack']) { $full_link = $tp->createConstants($newfile); $email_message = "Site: ".SITENAME." User: ".USERNAME."\n IP:".USERIP." ...would like to contribute the following language pack for e107 v".$e107info['e107_version'].". Please see attachment."; $subject = basename($newfile); //TODO - send email to languagepack@e107.org with attachment. } return LANG_LAN_22." (".str_replace("../", "", e_UPLOAD)."".basename($newfile).")."; } } function grab_lans($path, $language, $filter = "") { $fl = e107::getFile(); if ($lanlist = $fl->get_files($path, "", "standard", 4)) { sort($lanlist); } else { return; } $pzip = array(); foreach ($lanlist as $p) { $fullpath = $p['path'].$p['fname']; if (strpos($fullpath, $language) !== FALSE) { $pzip[] = $fullpath; } } return $pzip; } // ----------------------- /** * Compare Language File against script and find unused LANs * @param object $lanfile * @param object $script * @return string|boolean FALSE on error */ function unused($lanfile,$script,$reverse=false) { $mes = e107::getMessage(); $frm = e107::getForm(); unset($_SESSION['language-tools-unused']); // $mes->addInfo("LAN=".$lanfile."
Script = ".$script); if($reverse == true) { $exclude = array("e_LANGUAGE","e_LANGUAGEDIR","e_LAN","e_LANLIST","e_LANCODE"); $data = file_get_contents($script); if(preg_match_all("/([\w_]*LAN[\w_]*)/", $data, $match)) { // print_a($match); $foundLans = array(); foreach($match[1] as $val) { if(!in_array($val, $exclude)) { $foundLans[] = $val; } } sort($foundLans); $foundLans = array_unique($foundLans); $lanDefines = implode("\n",$foundLans); } $mes->addDebug("Script: ".$script); $tmp = explode(",", $lanfile); foreach($tmp as $scr) { if(!file_exists($scr)) { $mes->addError("Couldn't Load: ".$scr); continue; } $compare[$scr] = file_get_contents($scr); $mes->addDebug("LanFile: ".$scr); } $lanfile = $script; } else { $lanDefines = file_get_contents($lanfile); $mes->addDebug("LanFile: ".$lanfile); $tmp = explode(",",$script); foreach($tmp as $scr) { if(!file_exists($scr)) { $mes->addError("Couldn't Load: ".$scr); continue; } $compare[$scr] = file_get_contents($scr); $mes->addDebug("Script: ".$scr); } } if(!$compare) { $mes->addError("Couldn't read ".$script); } if(!$lanDefines) { $mes->addError("Couldn't read ".$lanfile); } $srch = array(""); $lanDefines = str_replace($srch,"",$lanDefines); $lanDefines = explode("\n", $lanDefines); if($lanDefines) { $text = $frm->open('language-unused'); $text .= ""; foreach($compare as $k=>$val) { $text .= ""; } $text .= " "; // for ($i=0; $i0 && $reverse == false) { $text .= "
".$frm->admin_button('disabled-unused','Disable All Unused','delete'). $frm->hidden('disable-unused-lanfile',$lanfile). $frm->hidden('deprecatedLans',$script). "
"; } $text .= $frm->close(); $mes->addInfo("Pink items are likely to be unused LANs.
Comment out and test thoroughly.
"); $ret['text'] = $mes->render().$text; $ret['caption'] = "Deprecated LAN Check (experimental!)"; return $ret; } else { return FALSE; } } function getDefined($line,$script=false) { if($script == true) { return array('define'=>$line,'value'=>'unknown'); } if(preg_match("#\"(.*?)\".*?\"(.*)\"#",$line,$match) || preg_match("#\'(.*?)\'.*?\"(.*)\"#",$line,$match) || preg_match("#\"(.*?)\".*?\'(.*)\'#",$line,$match) || preg_match("#\'(.*?)\'.*?\'(.*)\'#",$line,$match) || preg_match("#\((.*?)\,.*?\"(.*)\"#",$line,$match) || preg_match("#\((.*?)\,.*?\'(.*)\'#",$line,$match)) { return array('define'=>$match[1],'value'=>$match[2]); } } function compareit($needle,$haystack,$value='',$disabled=FALSE, $reverse=false){ // return "Need=".$needle."
hack=".$haystack."
val=".$val; //TODO Move this into a separate function (use a class for this whole script) $commonPhrases = file_get_contents(e_LANGUAGEDIR."English/admin/lan_admin.php"); $commonLines = explode("\n",$commonPhrases); $foundSimilar = FALSE; $foundCommon = FALSE; foreach($commonLines as $line) { if($match = getDefined($line)) { $id = $match['define']; $ar[$id] = $match['value']; } } $commonArray = array_keys($ar); // Check if a common phrases was used. foreach($ar as $def=>$common) { similar_text($value, $common, $p); if(strtoupper(trim($value)) == strtoupper($common)) { //$text .= "
$common
"; $foundCommon = TRUE; break; } elseif($p > 55) { $foundSimilar = TRUE; break; } $p = 0 ; } foreach($haystack as $script) { $lines = explode("\n",$script); $text .= "
"; } // $color = $found ? "" : "background-color:pink"; if($foundCommon && $found) { $color = "background-color:yellow"; $disabled .= "
".$common." is a common phrase.
(Use ".$def." instead.)"; // return ""; } elseif($foundSimilar && $found && substr($def,0,4) == "LAN_") { $color = "background-color:#E9EAF2"; $disabled .= " ".round($p)."% like ".$def." "; // $disabled .= " " . $def.""; // $common; } if($disabled == " (disabled)") { $color = "background-color:#DFFFDF"; } if(!$found) { $needle = "".$needle.""; } return "".$text.""; } /** * Handle page DOM within the page header * * @return string JS source */ function headerjs() { //FIXME breaking functionality. return; require_once (e_HANDLER.'js_helper.php'); $ret = " "; return $ret; } ?>
".$lanfile."".$k."
"; $count = 1; foreach($lines as $ln) { if(preg_match("/\b".$needle."\b/i",$ln)) { if($disabled) { $text .= ADMIN_WARNING_ICON; } elseif($reverse == true) { $text .= ADMIN_TRUE_ICON; } $text .= " Line:".$count." "; // "' Found"; $found = TRUE; } $count++; } if(!$found) { // echo "
Unused: ".$needle; if($reverse == true) { if(in_array($needle,$commonArray)) { $color = "background-color:#E9EAF2"; $text .= ADMIN_TRUE_ICON; $value = "Common Term"; } else { $color = "background-color:yellow"; $text .= "".ADMIN_WARNING_ICON.""; $value = "Missing from language file"; } } else { $color = "background-color:pink"; $text .= "-"; } if(!$disabled) { $_SESSION['language-tools-unused'][] = $needle; } } $text .= "
".$needle .$disabled. "
".$needle .$disabled. "