Your IP : 172.69.17.154


Current Path : /var/www/element/data/www/vsl-gates.ru/manager/actions/
Upload File :
Current File : /var/www/element/data/www/vsl-gates.ru/manager/actions/site_schedule.static.php

<script type="text/javascript" src="media/script/tablesort.js"></script>
<?php
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODx Content Manager instead of accessing this file directly.");
/* if(!$modx->hasPermission('edit_document')) {
	$e->setError(3);
	$e->dumpError();
} */
?>


<div class="subTitle">
<span class="right"><?php echo $_lang["site_schedule"];?></span>
</div>

<div class="sectionHeader"><?php echo $_lang["publish_events"];?></div><div class="sectionBody" id="lyr1">
<?php
//$db->debug = true;
$sql = "SELECT id, pagetitle, pub_date FROM $dbase.`".$table_prefix."site_content` WHERE pub_date > ".time()." ORDER BY pub_date ASC";
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit<1) {
	echo "<p>".$_lang["no_docs_pending_publishing"]."</p>";
} else {
?>
  <table border=0 cellpadding=2 cellspacing=0  class="sortabletable sortable-onload-3 rowstyle-even" id="table-1" width="100%">
    <thead>
      <tr bgcolor='#CCCCCC'>
        <th class="sortable"><b><?php echo $_lang['document'];?></b></th> 
        <th class="sortable"><b><?php echo $_lang['id'];?></b></th> 
        <th class="sortable"><b><?php echo $_lang['publish_date'];?></b></th>
      </tr>
    </thead>
    <tbody>
<?php
	for ($i=0;$i<$limit;$i++) {
		$row = mysql_fetch_assoc($rs);
?>
    <tr>
      <td><a href="index.php?a=3&id=<?php echo $row['id'] ;?>"><?php echo $row['pagetitle'] ;?></a></td>
	  <td><?php echo $row['id'] ;?></td>
      <td><?php echo strftime("%d-%m-%y %H:%M:%S", $row['pub_date']+$server_offset_time) ;?></td>
    </tr>
<?php
	}
?>
	</tbody>
</table>
<?php
}
?>

</div>


<div class="sectionHeader"><?php echo $_lang["unpublish_events"];?></div><div class="sectionBody" id="lyr2"><?php
//$db->debug = true;
$sql = "SELECT id, pagetitle, unpub_date FROM $dbase.`".$table_prefix."site_content` WHERE unpub_date > ".time()." ORDER BY unpub_date ASC";
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit<1) {
	echo "<p>".$_lang["no_docs_pending_unpublishing"]."</p>";
} else {
?>
  <table border=0 cellpadding=2 cellspacing=0  class="sortabletable sortable-onload-3 rowstyle-even" id="table-2" width="100%">
    <thead>
      <tr bgcolor='#CCCCCC'>
        <th class="sortable"><b><?php echo $_lang['document'];?></b></th> 
        <th class="sortable"><b><?php echo $_lang['id'];?></b></th> 
        <th class="sortable"><b><?php echo $_lang['unpublish_date'];?></b></th>
      </tr>
    </thead>
    <tbody>
<?php
	for ($i=0;$i<$limit;$i++) {
		$row = mysql_fetch_assoc($rs);
?>
    <tr>
      <td><a href="index.php?a=3&id=<?php echo $row['id'] ;?>"><?php echo $row['pagetitle'] ;?></a></td>
	  <td><?php echo $row['id'] ;?></td>
      <td><?php echo strftime("%d-%m-%y %H:%M:%S", $row['unpub_date']+$server_offset_time) ;?></td>
    </tr>
<?php
	}
?>
	</tbody>
</table>
<?php
}
?>

</div>


<div class="sectionHeader"><?php echo $_lang["all_events"];?></div><div class="sectionBody"><?php
$sql = "SELECT id, pagetitle, pub_date, unpub_date FROM $dbase.`".$table_prefix."site_content` WHERE pub_date > 0 OR unpub_date > 0 ORDER BY id";
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit<1) {
	echo "<p>".$_lang["no_docs_pending_pubunpub"]."</p>";
} else {
?>
  <table border=0 cellpadding=2 cellspacing=0  class="sortabletable sortable-onload-3 rowstyle-even" id="table-3" width="100%">
    <thead>
      <tr bgcolor='#CCCCCC'>
        <th class="sortable"><b><?php echo $_lang['document'];?></b></th> 
        <th class="sortable"><b><?php echo $_lang['id'];?></b></th> 
        <th class="sortable"><b><?php echo $_lang['publish_date'];?></b></th>
        <th class="sortable"><b><?php echo $_lang['unpublish_date'];?></b></th>
      </tr>
    </thead>
    <tbody>
<?php
	for ($i=0;$i<$limit;$i++) {
		$row = mysql_fetch_assoc($rs);
?>
    <tr>
      <td><a href="index.php?a=3&id=<?php echo $row['id'] ;?>"><?php echo $row['pagetitle'] ;?></a> &nbsp;</td>
  	  <td><?php echo $row['id'] ;?> &nbsp;</td>
      <td><?php echo $row['pub_date']==0 ? "" : strftime("%d-%m-%y %H:%M:%S", $row['pub_date']+$server_offset_time) ;?> &nbsp;</td>
      <td><?php echo $row['unpub_date']==0 ? "" : strftime("%d-%m-%y %H:%M:%S", $row['unpub_date']+$server_offset_time) ;?> &nbsp;</td>
    </tr>
<?php
	}
?>
	</tbody>
</table>
<?php
}
?>
</div>