Your IP : 216.73.216.240
<?php
/**
* @package My RSS Reader
* @copyright Copyright (C) 2010 FalsinSoft. All rights reserved.
* @license GNU/GPL
* @website http://falsinsoft-joomla.blogspot.com
* @email falsinsoft@gmail.com
*
*/
defined('_JEXEC') or die('Restricted access');
?>
<form action="index.php" method="post" name="adminForm">
<div id="editcell">
<table class="adminlist" width="100%">
<thead>
<tr>
<th width="20">
<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count($this->category_list); ?>);" />
</th>
<th>
<?php echo JText::_('COM_MYRSSREADER_CATEGORYLIST_CATEGORYLIST'); ?>
</th>
</tr>
</thead>
<tbody>
<?php
for($i = 0, $n = count($this->category_list); $i < $n; $i++)
{
$category_item = $this->category_list[$i];
$checked = JHTML::_('grid.checkedout', $category_item, $i);
echo "\t<tr>\n";
echo "\t<td>".$checked."</td>\n";
echo "\t<td><a href=\"index.php?option=com_myrssreader&task=category_edit&cid[]=".$category_item->id."\" title=\"".JText::_('Edit Category')."\">";
echo $category_item->title;
echo "</a></td>\n";
echo "\t</tr>\n";
}
?>
</tbody>
<tfoot>
<tr>
<td colspan="10">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
</table>
<?php echo $this->model->ShowDonationAdvise(); ?>
</div>
<input type="hidden" name="option" value="com_myrssreader" />
<input type="hidden" name="task" value="category" />
<input type="hidden" name="boxchecked" value="0" />
<?php echo JHTML::_('form.token'); ?>
</form>