Advanced->Script Editor, added preliminary support for translations.

This commit is contained in:
James Rose
2012-11-24 05:23:48 +00:00
parent b4cd5b78b6
commit 22a7603d84
18 changed files with 257 additions and 49 deletions

View File

@@ -22,6 +22,7 @@
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
James Rose <james.o.rose@gmail.com>
*/
include "root.php";
require_once "includes/require.php";
@@ -34,6 +35,12 @@ else {
exit;
}
//add multi-lingual support
require_once "app_languages.php";
foreach($text as $key => $value) {
$text[$key] = $value[$_SESSION['domain']['language']['code']];
}
if (count($_POST)>0) {
$clip_name = check_str($_POST["clip_name"]);
$clip_folder = check_str($_POST["clip_folder"]);
@@ -68,7 +75,7 @@ if (count($_POST)>0) {
require_once "header.php";
echo "<meta http-equiv=\"refresh\" content=\"1;url=clipoptions.php\">\n";
echo "Add Complete";
echo $text['message-add'];
require_once "footer.php";
return;
}
@@ -90,29 +97,29 @@ if (count($_POST)>0) {
echo " </tr>";
echo " <tr>";
echo " <td>Folder:</td>";
echo " <td>".$text['label-folder']."</td>";
echo " <td><input type='text' class='txt' name='clip_folder'></td>";
echo " </tr>";
echo " <tr>";
echo " <td colspan='2'>Before Selection:<br>";
echo " <td colspan='2'>".$text['label-before-selection']."<br>";
echo " <textarea name='clip_text_start' class='txt'></textarea>";
echo " </td>";
echo " </tr>";
echo " <tr>";
echo " <td colspan='2'>After Selection:<br>";
echo " <td colspan='2'>".$text['label-after-selection']."<br>";
echo " <textarea name='clip_text_end' class='txt'></textarea>";
echo " </td>";
echo " </tr>";
echo " <tr>";
echo " <td colspan='2'>Notes:<br>";
echo " <td colspan='2'>".$text['label-notes']."<br>";
echo " <textarea name='clip_desc' class='txt'></textarea>";
echo " </td>";
echo " </tr>";
echo " <td colspan='2' align='right'><input type='submit' name='submit' value='Add'></td>";
echo " <td colspan='2' align='right'><input type='submit' name='submit' value='".$text['button-add']."'></td>";
echo " </tr>";
echo "</table>";
echo "</form>";