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 : C:/AppServ/www/app/webroot/news/administrator/components/com_jevents/views/config/tmpl/ |
Upload File : |
<?php /** * JEvents Component for Joomla 1.5.x * * @version $Id: overview.php 1399 2009-03-30 08:31:52Z 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'); JHTML::_('behavior.tooltip'); $pathIMG = JURI::root().'/administrator/images/'; ?> <div id="jevents"> <form action="index.php" method="post" name="adminForm" > <table width="90%" border="0" cellpadding="2" cellspacing="2" class="adminform"> <tr><td> <script> function saveCategoryOrder( n ) { for ( var j = 0; j <= n; j++ ) { box = eval( "document.adminForm.cb" + j ); if ( box ) { if ( box.checked == false ) { box.checked = true; } } else { alert("You cannot change the order of items, as an item in the list is `Checked Out`"); return; } } submitform('categories.saveorder'); } </script> <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->cats ); ?>);" /> </th> <th class="title" width="75%" nowrap="nowrap"><?php echo JText::_('JEV_CATEGORY_TITLE'); ?></th> <th class="title" width="25%" nowrap="nowrap"><?php echo JText::_('JEV_CATEGORY_PARENT'); ?></th> <th width="2%"> Order</th> <th width="1%"> <a href="javascript: saveCategoryOrder( <?php echo count( $this->cats )-1; ?> )"><img src="images/filesave.png" border="0" width="16" height="16" alt="Save Order" /></a> </th> <th width="10%" nowrap="nowrap"><?php echo JText::_('JEV_PUBLISHED'); ?></th> <th width="10%" nowrap="nowrap"><?php echo JText::_('JEV_ACCESS'); ?></th> </tr> <?php $k=0; $i=0; foreach ($this->cats as $cat) { ?> <tr class="row<?php echo $k; ?>"> <td width="20" style="background-color:<?php echo $cat->getColor();?>"> <input type="checkbox" id="cb<?php echo $i;?>" name="cid[]" value="<?php echo $cat->id; ?>" onclick="isChecked(this.checked);" /> </td> <td > <a href="#edit" onclick="return listItemTask('cb<?php echo $i;?>','categories.edit')" title="<?php echo JText::_('JEV_CLICK_TO_EDIT'); ?>"> <?php echo $cat->title; ?> </a> </td> <td><?php echo ($cat->parent_id>0) ? $this->cats[$cat->parent_id]->title : "-"; ?></td> <td align="center" colspan="2"> <input type="text" name="order[]" size="5" value="<?php echo $cat->ordering; ?>" class="text_area" style="text-align: center" /> </td> <td align="center"> <?php $img = $cat->published?'publish_y.png':'publish_x.png'; ?> <a href="javascript: void(0);" onclick="return listItemTask('cb<?php echo $i; ?>','<?php echo $cat->published ? 'categories.unpublish' : 'categories.publish'; ?>')"><img src="<?php echo $pathIMG . $img; ?>" width="12" height="12" border="0" alt="" /></a> </td> <td align="center"><?php echo $cat->_groupname;?></td> </tr> <?php $i++; $k = 1 - $k; } ?> <tfoot> <tr> <td align="center" colspan="7"> <?php echo $this->pageNav->getListFooter(); ?> </td> </tr> </tfoot> </table> </td> </tr> </table> <input type="hidden" name="boxchecked" value="0" /> <input type="hidden" name="task" value="categories.list" /> <input type="hidden" name="act" value="" /> <input type="hidden" name="option" value="<?php echo JEV_COM_COMPONENT;?>" /> </form> </div>