Skip to content

Instantly share code, notes, and snippets.

@CB9TOIIIA
Created April 13, 2016 16:14
Show Gist options
  • Save CB9TOIIIA/a6a0ef566f1f381cb529ef6f19dbc546 to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/a6a0ef566f1f381cb529ef6f19dbc546 to your computer and use it in GitHub Desktop.
Joomla поиск API
<?php $alias = JFactory::getURI()->getPath();
$jinput = JFactory::getApplication()->input;
$Itemid = $jinput->getInt('Itemid'); ?>
<form action="<?php echo $alias; ?>" method="post" >
<input name="searchword" id="mod-search-searchword" maxlength="200" class="input-text search" type="search" placeholder="Поиск по сайту">
<input type="hidden" name="task" value="search">
<input type="hidden" name="option" value="com_search">
<input type="hidden" name="Itemid" value="<?php echo $Itemid; ?>">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment