Version 1.6 (checked in on 2011/01/03 at 00:17:55 by webchick)
Displays the search form block.
Available variables:
Default elements within $search:
Modules can add to the search form, so it is recommended to check for their existence before printing. The default keys will always exist. To check for a module-provided field, use code like this:
<?php
php if (isset($search['extra_field'])): ?>
<div class="extra-field">
<?php print $search['extra_field']; ?>
</div>
<?php endif; ?>
?>