summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-09-21 08:57:29 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2012-09-24 12:23:04 +0200
commit6102759b7cb9fd23f4e7fa5f12137334ff30a410 (patch)
treefba81fdedea0dd6ca3f1e1bdd260fa55ebc36ee9 /web/template/pkg_search_form.php
parent964ea083e68310ca7c09ca938219f4146f0ca5b9 (diff)
downloadaur-6102759b7cb9fd23f4e7fa5f12137334ff30a410.tar.gz
aur-6102759b7cb9fd23f4e7fa5f12137334ff30a410.tar.xz
Use echo shortcut syntax
Replace all occurrences of "<?php echo" and "<?php print" by "<?=" to reduce noise in templates. Note that as of PHP 5.4.0, "<?=" is always available and no longer requires "short_open_tag" to be set. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_search_form.php')
-rw-r--r--web/template/pkg_search_form.php50
1 files changed, 25 insertions, 25 deletions
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index 49ca876f..588b4d49 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -34,94 +34,94 @@ $per_page = array(50, 100, 250);
?>
<div id="pkglist-search" class="box filter-criteria">
-<h2><?php print __("Search Criteria"); ?></h2>
+<h2><?= __("Search Criteria"); ?></h2>
-<form action='<?php echo get_uri('/packages/'); ?>' method='get'>
+<form action='<?= get_uri('/packages/'); ?>' method='get'>
<p><input type='hidden' name='O' value='0' /></p>
<fieldset>
- <legend><?php echo __('Enter search criteria') ?></legend>
+ <legend><?= __('Enter search criteria') ?></legend>
<div>
- <label for="id_category"><?php print __("Category"); ?></label>
+ <label for="id_category"><?= __("Category"); ?></label>
<select name='C' id="id_category">
- <option value='0'><?php print __("Any"); ?></option>
+ <option value='0'><?= __("Any"); ?></option>
<?php foreach (pkgCategories() as $id => $cat): ?>
<?php if (isset($_REQUEST['C']) && $_REQUEST['C'] == $id): ?>
- <option value="<?php print $id ?>" selected="selected"><?php print $cat; ?></option>
+ <option value="<?= $id ?>" selected="selected"><?= $cat; ?></option>
<?php else: ?>
- <option value="<?php print $id ?>"><?php print $cat; ?></option>
+ <option value="<?= $id ?>"><?= $cat; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
</div>
<div>
- <label for="id_method"><?php print __("Search by"); ?></label>
+ <label for="id_method"><?= __("Search by"); ?></label>
<select name='SeB'>
<?php foreach ($searchby as $k => $v): ?>
<?php if (isset($_REQUEST['SeB']) && $_REQUEST['SeB'] == $k): ?>
- <option value="<?php print $k; ?>" selected="selected"><?php print $v; ?></option>
+ <option value="<?= $k; ?>" selected="selected"><?= $v; ?></option>
<?php else: ?>
- <option value="<?php print $k; ?>"><?php print $v; ?></option>
+ <option value="<?= $k; ?>"><?= $v; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
</div>
<div>
- <label for="id_q"><?php print __("Keywords"); ?></label>
+ <label for="id_q"><?= __("Keywords"); ?></label>
<input type='text' name='K' size='30' value="<?php if (isset($_REQUEST["K"])) { print stripslashes(trim(htmlspecialchars($_REQUEST["K"], ENT_QUOTES))); } ?>" maxlength='35' />
</div>
<div>
- <label for="id_out_of_date"><?php echo __('Out of Date'); ?></label>
+ <label for="id_out_of_date"><?= __('Out of Date'); ?></label>
<select name='outdated'>
<?php foreach ($outdated_flags as $k => $v): ?>
<?php if (isset($_REQUEST['outdated']) && $_REQUEST['outdated'] == $k): ?>
- <option value='<?php print $k; ?>' selected="selected"><?php print $v; ?></option>
+ <option value='<?= $k; ?>' selected="selected"><?= $v; ?></option>
<?php else: ?>
- <option value='<?php print $k; ?>'><?php print $v; ?></option>
+ <option value='<?= $k; ?>'><?= $v; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
</div>
<div>
- <label for="id_sort_by"><?php print __("Sort by"); ?></label>
+ <label for="id_sort_by"><?= __("Sort by"); ?></label>
<select name='SB'>
<?php foreach ($sortby as $k => $v): ?>
<?php if (isset($_REQUEST['SB']) && $_REQUEST['SB'] == $k): ?>
- <option value='<?php print $k; ?>' selected="selected"><?php print $v; ?></option>
+ <option value='<?= $k; ?>' selected="selected"><?= $v; ?></option>
<?php else: ?>
- <option value='<?php print $k; ?>'><?php print $v; ?></option>
+ <option value='<?= $k; ?>'><?= $v; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
</div>
<div>
- <label for="id_order_by"><?php print __("Sort order"); ?></label>
+ <label for="id_order_by"><?= __("Sort order"); ?></label>
<select name='SO'>
<?php foreach ($orderby as $k => $v): ?>
<?php if (isset($_REQUEST['SO']) && $_REQUEST['SO'] == $k): ?>
- <option value='<?php print $k; ?>' selected="selected"><?php print $v; ?></option>
+ <option value='<?= $k; ?>' selected="selected"><?= $v; ?></option>
<?php else: ?>
- <option value='<?php print $k; ?>'><?php print $v; ?></option>
+ <option value='<?= $k; ?>'><?= $v; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
</div>
<div>
- <label for="id_per_page"><?php print __("Per page"); ?></label>
+ <label for="id_per_page"><?= __("Per page"); ?></label>
<select name='PP'>
<?php foreach ($per_page as $i): ?>
<?php if (isset($_REQUEST['PP']) && $_REQUEST['PP'] == $i): ?>
- <option value="<?php print $i; ?>" selected="selected"><?php print $i; ?></option>
+ <option value="<?= $i; ?>" selected="selected"><?= $i; ?></option>
<?php else: ?>
- <option value="<?php print $i; ?>"><?php print $i; ?></option>
+ <option value="<?= $i; ?>"><?= $i; ?></option>
<?php endif; ?>
<?php endforeach; ?>
</select>
</div>
<div>
<label>&nbsp;</label>
- <input type='submit' class='button' name='do_Search' value='<?php print __("Go"); ?>' />
- <input type='submit' class='button' name='do_Orphans' value='<?php print __("Orphans"); ?>' />
+ <input type='submit' class='button' name='do_Search' value='<?= __("Go"); ?>' />
+ <input type='submit' class='button' name='do_Orphans' value='<?= __("Orphans"); ?>' />
</div>
</fieldset>
</form>