HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/components/com_jevents/views/geraint/search/tmpl/form_body.php
<?php
defined('_JEXEC') or die('Restricted access');

use Joomla\CMS\Language\Text;
use Joomla\CMS\Factory;
use Joomla\CMS\Router\Route;

$input = Factory::getApplication()->input;
?>

<table cellpadding="0" cellspacing="0" border="0" width="100%">
	<tr>
		<td align="center" width="100%">
			<?php //onsubmit="if (this.keyword.value.length<3) {alert('keyword is too short');return false;}" ?>
			<form action="<?php echo Route::_("index.php?option=" . JEV_COM_COMPONENT . "&task=search.results&Itemid=" . $this->Itemid); ?>"
			      method="post">
				<input type="text" name="keyword" size="30" maxlength="50" class="inputbox"
				       value="<?php echo htmlspecialchars($this->keyword); ?>"/>
				<label for="showpast"><?php echo Text::_("JEV_SHOW_PAST"); ?></label>
				<input type="checkbox" id="showpast" name="showpast"
				       value="1" <?php echo $input->getInt('showpast', 0) ? 'checked="checked"' : '' ?> />
				<br/>
				<input class="button" type="submit" name="push" value="<?php echo Text::_('JEV_SEARCH_TITLE'); ?>"/>
			</form>
		</td>
	</tr>
</table>