소스 검색

Delete install_select_language.php

FusionPBX 6 년 전
부모
커밋
14f9d921f6
1개의 변경된 파일0개의 추가작업 그리고 67개의 파일을 삭제
  1. 0 67
      core/install/resources/page_parts/install_select_language.php

+ 0 - 67
core/install/resources/page_parts/install_select_language.php

@@ -1,67 +0,0 @@
-<?php
-/*
-	FusionPBX
-	Version: MPL 1.1
-
-	The contents of this file are subject to the Mozilla Public License Version
-	1.1 (the "License"); you may not use this file except in compliance with
-	the License. You may obtain a copy of the License at
-	http://www.mozilla.org/MPL/
-
-	Software distributed under the License is distributed on an "AS IS" basis,
-	WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-	for the specific language governing rights and limitations under the
-	License.
-
-	The Original Code is FusionPBX
-
-	The Initial Developer of the Original Code is
-	Mark J Crane <[email protected]>
-	Portions created by the Initial Developer are Copyright (C) 2015-2016
-	the Initial Developer. All Rights Reserved.
-
-	Contributor(s):
-	Matthew Vale <[email protected]>
-*/
-
-	echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
-	echo "	<tr>\n";
-	echo "		<td width='30%' align='left' nowrap='nowrap'><b>".$text['header-select_language']."</b><br><br></td>\n";
-	echo "		<td width='70%' align='right'>";
-	echo "			<input type='submit' name='submit' class='btn' value='".$text['button-next']."'/>\n";
-	echo "		</td>\n";
-	echo "	</tr>\n";
-	echo "	<tr>\n";
-	echo "		<td class='vncellreq' valign='top' align='left' nowrap>\n";
-	echo "			".$text['label-select_language']."\n";
-	echo "		</td>\n";
-	echo "		<td class='vtable' align='left'>\n";
-	echo "			<table cellpadding='0' cellspacing='0'>";
-	foreach($_SESSION['app']['languages'] as $lang_code){
-		echo "			<tr>";
-		echo "				<td width='15' class='vtable' valign='top' nowrap='nowrap'>\n";
-		echo "					<input type='radio' name='install_language' value='$lang_code' id='lang_$lang_code' ";
-		if($lang_code == $_SESSION['domain']['language']['code']) {
-			echo " checked='checked'";
-		}
-		echo "/>";
-		echo "				</td>";
-		echo "				<td class='vtable' align='left' valign='top' nowrap='nowrap'>\n";
-		if (file_exists($_SERVER["PROJECT_ROOT"]."/core/install/resources/images/flags/$lang_code.png")) {
-			echo "					<img src='<!--{project_path}-->/core/install/resources/images/flags/$lang_code.png' alt='$lang_code'/>&nbsp;".$text["language-$lang_code"];
-		}
-		echo "				</td>";
-		echo "				<td width='100%' class='vtable' valign='top'>\n";
-		echo "					&nbsp;\n";
-		echo "				</td>";
-		echo "			</tr>";
-	}
-	echo "			</table>";
-	echo "			<br />\n";
-	echo "			".$text['description-select_language']."\n";
-	echo "		</td>\n";
-	echo "	</tr>\n";
-	echo "</table>";
-	echo "<br><br>";
-
-?>