123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?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) 2008-2023
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- James Rose <[email protected]>
- */
- //includes files
- require_once dirname(__DIR__, 2) . "/resources/require.php";
- require_once "resources/check_auth.php";
- //check permissions
- if (permission_exists('edit_save')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- if (count($_POST)>0) {
- $clip_name = $_POST["clip_name"];
- $clip_folder = $_POST["clip_folder"];
- $clip_text_start = $_POST["clip_text_start"];
- $clip_text_end = $_POST["clip_text_end"];
- $clip_desc = $_POST["clip_desc"];
- $clip_order = $_POST["clip_order"];
- if (strlen($clip_order) == 0) { $clip_order = 0; }
- //no slashes
- $clip_name = str_replace('/', '|', $clip_name);
- $clip_name = str_replace('\\', '|', $clip_name);
- //sql insert
- $array['clips'][0]['clip_uuid'] = uuid();
- $array['clips'][0]['clip_name'] = $clip_name;
- $array['clips'][0]['clip_folder'] = $clip_folder;
- $array['clips'][0]['clip_text_start'] = $clip_text_start;
- $array['clips'][0]['clip_text_end'] = $clip_text_end;
- $array['clips'][0]['clip_desc'] = $clip_desc;
- $array['clips'][0]['clip_order'] = $clip_order;
- $p = new permissions;
- $p->add('clip_add', 'temp');
- $database = new database;
- $database->app_name = 'edit';
- $database->app_uuid = '17e628ee-ccfa-49c0-29ca-9894a0384b9b';
- $database->save($array);
- unset($array);
- $p->add('clip_add', 'temp');
- require_once "header.php";
- echo "<meta http-equiv=\"refresh\" content=\"1;url=clip_options.php\">\n";
- echo $text['message-add'];
- require_once "footer.php";
- exit;
- }
- //show the content
- require_once "header.php";
- echo "<table width='100%' border='0' cellpadding='0' cellspacing='2'>\n";
- echo "<tr>\n";
- echo " <td align=\"left\">\n";
- echo "<form method='post' action=''>";
- echo "<table width='100%' border='0'>";
- echo " <tr>";
- echo " <td>Name</td>";
- echo " <td><input type='text' class='txt' name='clip_name' id='clip_name'></td>";
- echo " </tr>";
- echo " <tr>";
- 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'>".$text['label-before-selection']."<br>";
- echo " <textarea name='clip_text_start' class='txt' style='resize: vertical;'></textarea>";
- echo " </td>";
- echo " </tr>";
- echo " <tr>";
- echo " <td colspan='2'>".$text['label-after-selection']."<br>";
- echo " <textarea name='clip_text_end' class='txt' style='resize: vertical;'></textarea>";
- echo " </td>";
- echo " </tr>";
- echo " <tr>";
- echo " <td colspan='2'>".$text['label-notes']."<br>";
- echo " <textarea name='clip_desc' class='txt' style='resize: vertical;'></textarea>";
- echo " </td>";
- echo " </tr>";
- echo " <tr>";
- echo " <td align='left'><input type='button' value='".$text['button-back']."' onclick='history.back()'></td>";
- echo " <td align='right'><input type='submit' name='submit' value='".$text['button-add']."'></td>";
- echo " </tr>";
- echo "</table>";
- echo "</form>";
- echo " </td>";
- echo " </tr>";
- echo "</table>";
- echo "<script>document.getElementById('clip_name').focus();</script>";
- //include the footer
- require_once "footer.php";
|