Add a missing file sip_profile_copy.php to the dev branch.
This commit is contained in:
@@ -0,0 +1,204 @@
|
||||
<?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 <markjcrane@fusionpbx.com>
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
*/
|
||||
include "root.php";
|
||||
require_once "includes/require.php";
|
||||
require_once "includes/checkauth.php";
|
||||
require_once "config.php";
|
||||
if (permission_exists('content_view')) {
|
||||
//access granted
|
||||
}
|
||||
else {
|
||||
echo "access denied";
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
require_once "includes/header.php";
|
||||
|
||||
$order_by = $_GET["order_by"];
|
||||
$order = $_GET["order"];
|
||||
|
||||
|
||||
|
||||
echo "<div align='center'>";
|
||||
echo "<table border='0' cellpadding='0' cellspacing='2'>\n";
|
||||
|
||||
echo "<tr class='border'>\n";
|
||||
echo " <td align=\"left\">\n";
|
||||
echo " <br>";
|
||||
|
||||
|
||||
$sql = "";
|
||||
$sql .= "select * from v_rss_sub_category ";
|
||||
$sql .= "where domain_uuid = '$domain_uuid' ";
|
||||
if (strlen($order_by)> 0) { $sql .= "order by $order_by $order "; }
|
||||
|
||||
$prep_statement = $db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
||||
$result_count = count($result);
|
||||
|
||||
$c = 0;
|
||||
$row_style["0"] = "background-color: #F5F5DC;";
|
||||
$row_style["1"] = "background-color: #FFFFFF;";
|
||||
|
||||
echo "<div align='left'>\n";
|
||||
echo "<table border='0' cellpadding='1' cellspacing='1'>\n";
|
||||
echo "<tr><td colspan='100%'><img src='/images/spacer.gif' width='100%' height='1' style='background-color: #BBBBBB;'></td></tr>";
|
||||
|
||||
if ($result_count == 0) { //no results
|
||||
echo "<tr><td> </td></tr>";
|
||||
}
|
||||
else { //received results
|
||||
|
||||
echo "<tr>";
|
||||
echo "<th nowrap> ";
|
||||
if (strlen($order_by)==0) {
|
||||
echo "<a href='?order_by=rss_sub_category_uuid&order=desc' title='ascending'>rss_sub_category_uuid</a>";
|
||||
}
|
||||
else {
|
||||
if ($order=="asc") {
|
||||
echo "<a href='?order_by=rss_sub_category_uuid&order=desc' title='ascending'>rss_sub_category_uuid</a>";
|
||||
}
|
||||
else {
|
||||
echo "<a href='?order_by=rss_sub_category_uuid&order=asc' title='descending'>rss_sub_category_uuid</a>";
|
||||
}
|
||||
}
|
||||
echo " </th>";
|
||||
|
||||
echo "<th nowrap> ";
|
||||
if (strlen($order_by)==0) {
|
||||
echo "<a href='?order_by=rss_category&order=desc' title='ascending'>rss_category</a>";
|
||||
}
|
||||
else {
|
||||
if ($order=="asc") {
|
||||
echo "<a href='?order_by=rss_category&order=desc' title='ascending'>rss_category</a>";
|
||||
}
|
||||
else {
|
||||
echo "<a href='?order_by=rss_category&order=asc' title='descending'>rss_category</a>";
|
||||
}
|
||||
}
|
||||
echo " </th>";
|
||||
|
||||
echo "<th nowrap> ";
|
||||
if (strlen($order_by)==0) {
|
||||
echo "<a href='?order_by=rss_sub_category&order=desc' title='ascending'>rss_sub_category</a>";
|
||||
}
|
||||
else {
|
||||
if ($order=="asc") {
|
||||
echo "<a href='?order_by=rss_sub_category&order=desc' title='ascending'>rss_sub_category</a>";
|
||||
}
|
||||
else {
|
||||
echo "<a href='?order_by=rss_sub_category&order=asc' title='descending'>rss_sub_category</a>";
|
||||
}
|
||||
}
|
||||
echo " </th>";
|
||||
|
||||
echo "<th nowrap> ";
|
||||
if (strlen($order_by)==0) {
|
||||
echo "<a href='?order_by=rss_sub_category_description&order=desc' title='ascending'>rss_sub_category_description</a>";
|
||||
}
|
||||
else {
|
||||
if ($order=="asc") {
|
||||
echo "<a href='?order_by=rss_sub_category_description&order=desc' title='ascending'>rss_sub_category_description</a>";
|
||||
}
|
||||
else {
|
||||
echo "<a href='?order_by=rss_sub_category_description&order=asc' title='descending'>rss_sub_category_description</a>";
|
||||
}
|
||||
}
|
||||
echo " </th>";
|
||||
|
||||
echo "<th nowrap> ";
|
||||
if (strlen($order_by)==0) {
|
||||
echo "<a href='?order_by=rss_add_user&order=desc' title='ascending'>rss_add_user</a>";
|
||||
}
|
||||
else {
|
||||
if ($order=="asc") {
|
||||
echo "<a href='?order_by=rss_add_user&order=desc' title='ascending'>rss_add_user</a>";
|
||||
}
|
||||
else {
|
||||
echo "<a href='?order_by=rss_add_user&order=asc' title='descending'>rss_add_user</a>";
|
||||
}
|
||||
}
|
||||
echo " </th>";
|
||||
|
||||
echo "<th nowrap> ";
|
||||
if (strlen($order_by)==0) {
|
||||
echo "<a href='?order_by=rss_add_date&order=desc' title='ascending'>rss_add_date</a>";
|
||||
}
|
||||
else {
|
||||
if ($order=="asc") {
|
||||
echo "<a href='?order_by=rss_add_date&order=desc' title='ascending'>rss_add_date</a>";
|
||||
}
|
||||
else {
|
||||
echo "<a href='?order_by=rss_add_date&order=asc' title='descending'>rss_add_date</a>";
|
||||
}
|
||||
}
|
||||
echo " </th>";
|
||||
|
||||
echo "</tr>";
|
||||
echo "<tr><td colspan='100%'><img src='/images/spacer.gif' width='100%' height='1' style='background-color: #BBBBBB;'></td></tr>\n";
|
||||
|
||||
foreach($result as $row) {
|
||||
//print_r( $row );
|
||||
echo "<tr style='".$row_style[$c]."'>\n";
|
||||
echo "<td valign='top'><a href='rss_sub_categoryupdate.php?rss_sub_category_uuid=".$row[rss_sub_category_uuid]."'>".$row[rss_sub_category_uuid]."</a></td>";
|
||||
echo "<td valign='top'>".$row[rss_category]."</td>";
|
||||
echo "<td valign='top'>".$row[rss_sub_category]."</td>";
|
||||
echo "<td valign='top'>".$row[rss_sub_category_description]."</td>";
|
||||
echo "<td valign='top'>".$row[rss_add_user]."</td>";
|
||||
echo "<td valign='top'>".$row[rss_add_date]."</td>";
|
||||
echo "</tr>";
|
||||
|
||||
echo "<tr><td colspan='100%'><img src='/images/spacer.gif' width='100%' height='1' style='background-color: #BBBBBB;'></td></tr>\n";
|
||||
if ($c==0) { $c=1; } else { $c=0; }
|
||||
} //end foreach unset($sql, $result, $row_count);
|
||||
|
||||
echo "</table>\n";
|
||||
echo "</div>\n";
|
||||
|
||||
|
||||
echo " <br><br>";
|
||||
echo " </td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
} //end if results
|
||||
|
||||
echo "</table>\n";
|
||||
echo "<input type='button' class='btn' name='' onclick=\"window.location='rss_sub_categorysearch.php'\" value='Search'> \n";
|
||||
echo "<input type='button' class='btn' name='' onclick=\"window.location='rss_sub_categoryadd.php'\" value='Add'> \n";
|
||||
echo "</div>";
|
||||
|
||||
echo "<br><br>";
|
||||
require_once "includes/footer.php";
|
||||
|
||||
unset ($result_count);
|
||||
unset ($result);
|
||||
unset ($key);
|
||||
unset ($val);
|
||||
unset ($c);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user