Created
April 13, 2016 16:14
-
-
Save CB9TOIIIA/a6a0ef566f1f381cb529ef6f19dbc546 to your computer and use it in GitHub Desktop.
Joomla поиск API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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