-
Notifications
You must be signed in to change notification settings - Fork 5
/
clip_add.php
137 lines (111 loc) · 3.9 KB
/
clip_add.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?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";
?>