git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
24 lines
1.0 KiB
PHP
24 lines
1.0 KiB
PHP
<?php // no direct access
|
|
defined('_JEXEC') or die('Restricted access'); ?>
|
|
<form id="jForm" action="<?php JRoute::_('index.php')?>" method="post">
|
|
<?php if ($this->params->get('show_page_title', 1)) : ?>
|
|
<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"><?php echo $this->escape($this->params->get('page_title')); ?></div>
|
|
<?php endif; ?>
|
|
<p>
|
|
<?php if ($this->params->get('filter')) : ?>
|
|
<?php echo JText::_('Filter').' '; ?>
|
|
<input type="text" name="filter" value="<?php echo $this->escape($this->filter); ?>" class="inputbox" onchange="document.jForm.submit();" />
|
|
<?php endif; ?>
|
|
<?php echo $this->form->monthField; ?>
|
|
<?php echo $this->form->yearField; ?>
|
|
<?php echo $this->form->limitField; ?>
|
|
<button type="submit" class="button"><?php echo JText::_('Filter'); ?></button>
|
|
</p>
|
|
|
|
<?php echo $this->loadTemplate('items'); ?>
|
|
|
|
<input type="hidden" name="view" value="archive" />
|
|
<input type="hidden" name="option" value="com_content" />
|
|
<input type="hidden" name="viewcache" value="0" />
|
|
</form>
|