Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/news/administrator/components/com_jevents/views/icalrepeat/tmpl/ |
Upload File : |
<?php /** * JEvents Component for Joomla 1.5.x * * @version $Id: overview.php 1457 2009-06-01 09:49:51Z geraint $ * @package JEvents * @copyright Copyright (C) 2008-2009 GWE Systems Ltd * @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html * @link http://www.jevents.net */ defined('_JEXEC') or die('Restricted access'); global $task; $db =& JFactory::getDBO(); $user =& JFactory::getUser(); JHTML::_('behavior.tooltip'); $pathIMG = JURI::Root() . 'administrator/images/'; $pathJeventsIMG = JURI::Root() . "administrator/components/".JEV_COM_COMPONENT."/images/"; ?> <form action="index.php" method="post" name="adminForm"> <table cellpadding="4" cellspacing="0" border="0" width="100%"> <tr> <td width="100%"> </td> </tr> </table> <table cellpadding="4" cellspacing="0" border="0" width="100%" class="adminlist"> <tr> <th width="20" nowrap="nowrap"> <input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $this->icalrows ); ?>);" /> </th> <th class="title" width="60%" nowrap="nowrap"><?php echo JText::_('JEV_ICAL_SUMMARY'); ?></th> <th width="40%" nowrap="nowrap"><?php echo "Repeat Date/Time"; ?></th> </tr> <?php $k = 0; $nullDate = $db->getNullDate(); for( $i=0, $n=count( $this->icalrows ); $i < $n; $i++ ){ $row = &$this->icalrows[$i]; ?> <tr class="row<?php echo $k; ?>"> <td width="20"> <input type="checkbox" id="cb<?php echo $i;?>" name="cid[]" value="<?php echo $row->rp_id(); ?>" onclick="isChecked(this.checked);" /> </td> <td width="30%"> <a href="#edit" onclick="return listItemTask('cb<?php echo $i;?>','icalrepeat.edit')" title="<?php echo JText::_('JEV_CLICK_TO_EDIT'); ?>"><?php echo $row->title(); ?></a> </td> <td width="40%"> <?php $times = '<table style="border: 1px solid #666666; width:100%;">'; $times .= '<tr><td>Start : '. $row->publish_up().'</td></tr>'; $times .= '<tr><td>End : ' . $row->publish_down(). '</td></tr>'; $times .="</table>"; echo $times; ?> </td> </tr> <?php $k = 1 - $k; } ?> <tr> <th align="center" colspan="9"><?php echo $this->pageNav->getListFooter(); ?></th> </tr> </table> <input type="hidden" name="option" value="<?php echo JEV_COM_COMPONENT;?>" /> <input type="hidden" name="cid[]" value="<?php echo $this->evid;?>" /> <input type="hidden" name="task" value="icalrepeat.list" /> <input type="hidden" name="boxchecked" value="0" /> </form> <br /> <table cellspacing="0" cellpadding="4" border="0" align="center"> <tr align="center"> <td> <img src="<?php echo $pathIMG; ?>publish_y.png" width="12" height="12" alt="<?php echo JText::_('JEV_TIT_PENDING'); ?>" title="<?php echo JText::_('JEV_TIT_PENDING'); ?>" /> </td> <td> <?php echo JText::_('JEV_PUB_BUT_COMING'); ?> | </td> <td> <img src="<?php echo $pathIMG; ?>publish_g.png" width="12" height="12" alt="Visible" /> </td> <td> <?php echo JText::_('JEV_PUB_ACTUAL'); ?> | </td> <td> <img src="<?php echo $pathIMG; ?>publish_r.png" width="12" height="12" alt="Finished" /> </td> <td> <?php echo JText::_('JEV_PUB_FINISHED'); ?> | </td> <td> <img src="<?php echo $pathIMG; ?>publish_x.png" width="12" height="12" alt="Finished" /> </td> <td><?php echo JText::_('JEV_NOT_PUBLISHED'); ?></td> </tr> <tr> <td colspan="8" align="center"><?php echo JText::_('JEV_CLICK_TO_CHANGE_STATUS'); ?></td> </tr> </table> <?php