Created
July 9, 2013 14:38
-
-
Save e06widu/5957852 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // No direct access to this file | |
| defined('_JEXEC') or die('Restricted Access'); | |
| // load tooltip behavior | |
| JHtml::_('behavior.tooltip'); | |
| ?> | |
| <form action="<?php echo JRoute::_('index.php?option=com_myresourcelist'); ?>" method="post" name="adminForm"> | |
| <table class="adminlist"> | |
| <thead><?php echo $this->loadTemplate('head');?></thead> | |
| <tfoot><?php echo $this->loadTemplate('foot');?></tfoot> | |
| <tbody><?php echo $this->loadTemplate('body');?></tbody> | |
| </table> | |
| <div> | |
| <input type="hidden" name="task" value="" /> | |
| <input type="hidden" name="boxchecked" value="0" /> | |
| <?php echo JHtml::_('form.token'); ?> | |
| </div> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment