summaryrefslogtreecommitdiff
path: root/pages/advertising/0.php
diff options
context:
space:
mode:
authorMarkus Warg <mw@it-sls.de>2010-03-29 09:54:06 +0200
committerMarkus Warg <mw@it-sls.de>2010-03-29 09:54:06 +0200
commit9dceece06fbdc98add6f76f0b1aec05891a394c4 (patch)
treef7227c28ca5f79f30c2ec81ba1a09a4fe3972436 /pages/advertising/0.php
parent5b68967def224a00f54eb54946ff17301bbd3cdb (diff)
downloadcacert-devel-9dceece06fbdc98add6f76f0b1aec05891a394c4.tar.gz
cacert-devel-9dceece06fbdc98add6f76f0b1aec05891a394c4.tar.xz
cacert-devel-9dceece06fbdc98add6f76f0b1aec05891a394c4.zip
remove cacert/ prefix
Diffstat (limited to 'pages/advertising/0.php')
-rw-r--r--pages/advertising/0.php100
1 files changed, 100 insertions, 0 deletions
diff --git a/pages/advertising/0.php b/pages/advertising/0.php
new file mode 100644
index 0000000..0404a5e
--- /dev/null
+++ b/pages/advertising/0.php
@@ -0,0 +1,100 @@
+<? /*
+ LibreSSL - CAcert web application
+ Copyright (C) 2004-2008 CAcert Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 2 of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/ ?>
+<?
+ $tdcols = 6;
+ if($_SESSION['profile']['adadmin'] == 2)
+ $tdcols++;
+
+ if(array_key_exists('approve',$_REQUEST) && intval($_REQUEST['approve']) > 0 && $_SESSION['profile']['adadmin'] >= 2)
+ {
+ $approve = intval($_REQUEST['approve']);
+ $query = "select * from `advertising` where `id`='$approve' and `expires`='0000-00-00 00:00:00'";
+ $res = mysql_query($query);
+ if(mysql_num_rows($res) > 0)
+ {
+ $row = mysql_fetch_assoc($res);
+ $end = date("Y-m-d H:i:s", mktime(date("H"), date("i"), date("s"), date("m")+$row['months'], date("d"), date("Y")));
+ $query = "update `advertising` set `expires`='$end', `active`=1, `approvedby`='".$_SESSION['profile']['id']."' where `id`='$approve'";
+ mysql_query($query);
+ echo "<p>The ad was approved and is now active.</p>\n";
+ }
+ }
+ if(array_key_exists('deactive',$_REQUEST) && intval($_REQUEST['deactive']) > 0 && $_SESSION['profile']['adadmin'] >= 2)
+ {
+ $deactive = intval($_REQUEST['deactive']);
+ $query = "select * from `advertising` where `id`='$deactive'";
+ $res = mysql_query($query);
+ if(mysql_num_rows($res) > 0)
+ {
+ $row = mysql_fetch_assoc($res);
+ $end = date("Y-m-d H:i:s", mktime(date("H"), date("i"), date("s"), date("m")+$row['months'], date("d"), date("Y")));
+ $query = "update `advertising` set `active`=0 where `id`='$deactive'";
+ mysql_query($query);
+ echo "<p>The ad was deactivated and is now inactive.</p>\n";
+ }
+ }
+
+?>
+<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="500">
+ <tr>
+ <td colspan="<?=$tdcols?>" class="title"><?=_("View Advertising")?> <a href="advertising.php?id=<?=$id?>&showall=1"><?=_("Show All")?></a></td>
+ </tr>
+ <tr>
+ <td class="DataTD">ID</td>
+ <td class="DataTD">Link</td>
+ <td class="DataTD">Status</td>
+ <td class="DataTD">Expires</td>
+ <td class="DataTD">Edit</td>
+ <td class="DataTD">Disable</td>
+<? if($_SESSION['profile']['adadmin'] == 2) { echo "\t<td class='DataTD'>Approve</td>\n"; }
+?> </tr>
+<?
+ $query = "select *,UNIX_TIMESTAMP(`expires`)-UNIX_TIMESTAMP(NOW()) as `timeleft` from `advertising` where `replaced`=0 ";
+ if(!array_key_exists('showall',$_REQUEST) || $_REQUEST['showall'] != 1)
+ $query .= "and `active`=1 having `timeleft` > 0 ";
+ $query .= "order by `id` desc";
+
+ $res = mysql_query($query);
+ while($row = mysql_fetch_assoc($res))
+ {
+ if($row['expires'] == "0000-00-00 00:00:00")
+ $status = "Pending";
+ else if($row['active'] == 1 && $row['timeleft'] > 0)
+ $status = "Active";
+ else if($row['timeleft'] <= 0)
+ $status = "Expired";
+ else if($row['active'] != 1)
+ $status = "Disabled";
+ else
+ $status = "Unknown";
+ echo "<tr><td class='DataTD'>".$row['id']."</td><td class='DataTD'><a href='".$row['link']."' target='_new'>".$row['title']."</a></td>";
+ echo "<td class='DataTD'>$status</td><td class='DataTD'>".$row['expires']."</td><td class='DataTD'>Edit</td>";
+ echo "<td class='DataTD'>Disable</td>";
+ if($_SESSION['profile']['adadmin'] == 2)
+ {
+ if($status == "Pending" && $row['expires'] == "0000-00-00 00:00:00")
+ echo "<td class='DataTD'><a href='advertising.php?id=0&amp;approve=".$row['id']."'>Approve</a></td>";
+ else if($status == "Active")
+ echo "<td class='DataTD'><a href='advertising.php?id=0&amp;deactive=".$row['id']."'>De-Activate</a></td>";
+ else
+ echo "<td class='DataTD'>N/A</td>";
+ }
+ echo "</tr>\n";
+ }
+?>
+</table>