From: Andrea Zagli Date: Sat, 12 Dec 2009 14:49:13 +0000 (+0100) Subject: Some fixes to make mod_mnogosearch installable. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=9bc88bc0c0ca9c9a5a53f46656be9df76ad36edc;p=joomla%2Fjmnogosearch Some fixes to make mod_mnogosearch installable. --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4c4ffc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.zip diff --git a/com_mnogosearch/mnogosearch.xml b/com_mnogosearch/mnogosearch.xml index 0c80ef7..02dfc84 100644 --- a/com_mnogosearch/mnogosearch.xml +++ b/com_mnogosearch/mnogosearch.xml @@ -1,7 +1,7 @@ - mnoGoSearch + JMnoGoSearch Andrea Zagli December 2009 Copyright (C) 2009 Andrea Zagli. All rights reserved. @@ -9,7 +9,7 @@ azagli@libero.it http://saetta.homelinux.org/ 1.0.0 - A component to display search results from mnoGoSearch web search engine. + A component to display search results from mnoGoSearch (http://www.mnogosearch.org/) web search engine. @@ -27,7 +27,7 @@ - jmnoGoSearch + JMnoGoSearch admin.mnogosearch.php config.xml diff --git a/mod_mnogosearch/mod_mnogosearch.php b/mod_mnogosearch/mod_mnogosearch.php new file mode 100644 index 0000000..d26d9b2 --- /dev/null +++ b/mod_mnogosearch/mod_mnogosearch.php @@ -0,0 +1,34 @@ +get('button', ''); +$imagebutton = $params->get('imagebutton', ''); +$button_pos = $params->get('button_pos', 'left'); +$button_text = $params->get('button_text', JText::_('Search')); +$width = intval($params->get('width', 20)); +$maxlength = $width > 20 ? $width : 20; +$text = $params->get('text', JText::_('search...')); +$set_Itemid = intval($params->get('set_itemid', 0)); +$moduleclass_sfx = $params->get('moduleclass_sfx', ''); + +if ($imagebutton) { + $img = modMnoGoSearchHelper::getSearchImage( $button_text ); +} +$mitemid = $set_Itemid > 0 ? $set_Itemid : JRequest::getInt('Itemid'); +require(JModuleHelper::getLayoutPath('mod_mnogosearch')); diff --git a/mod_mnogosearch/mod_mnogosearch.xml b/mod_mnogosearch/mod_mnogosearch.xml index a2afd23..7202a67 100644 --- a/mod_mnogosearch/mod_mnogosearch.xml +++ b/mod_mnogosearch/mod_mnogosearch.xml @@ -1,5 +1,6 @@ - + + mnoGoSearch Andrea Zagli December 2009 @@ -11,7 +12,10 @@ This module will display a search box that is linked with the mnoGoSearch web search engine. + helper.php + index.html mod_mnogosearch.php + mod_mnogosearch.xml @@ -38,11 +42,5 @@ - - - - - - - + diff --git a/mod_mnogosearch/mod_mnosearch.php b/mod_mnogosearch/mod_mnosearch.php deleted file mode 100644 index d26d9b2..0000000 --- a/mod_mnogosearch/mod_mnosearch.php +++ /dev/null @@ -1,34 +0,0 @@ -get('button', ''); -$imagebutton = $params->get('imagebutton', ''); -$button_pos = $params->get('button_pos', 'left'); -$button_text = $params->get('button_text', JText::_('Search')); -$width = intval($params->get('width', 20)); -$maxlength = $width > 20 ? $width : 20; -$text = $params->get('text', JText::_('search...')); -$set_Itemid = intval($params->get('set_itemid', 0)); -$moduleclass_sfx = $params->get('moduleclass_sfx', ''); - -if ($imagebutton) { - $img = modMnoGoSearchHelper::getSearchImage( $button_text ); -} -$mitemid = $set_Itemid > 0 ? $set_Itemid : JRequest::getInt('Itemid'); -require(JModuleHelper::getLayoutPath('mod_mnogosearch'));