Plugin Directory

Changeset 521296


Ignore:
Timestamp:
03/20/2012 12:15:16 PM (14 years ago)
Author:
dmitry78
Message:
 
Location:
xisearch-bar
Files:
13 added
12 edited

Legend:

Unmodified
Added
Removed
  • xisearch-bar/trunk/readme.txt

    r490171 r521296  
    1515XiSearch provides the variety of color themes, changeable location on a page and selection of different bar languages.
    1616
    17 Quick search option gives opportunity to get any useful information without unnecessary clicks.
     17Quick search option gives opportunity to get any useful information without unnecessary clicks.
     18
     19XiSearch Content hint is a part of XiSearch tools goes together with the bar but it can be also installed and used separately.
    1820
    1921Please, refer to the details of how to choose and get XiSearch bar on http://www.xisearch.com/
     
    2830
    2931== Screenshots ==
    30 1. Get information immediately with Quick search options: search on site
    31 2. Quick search: Get information according to the main topic of the webpage using search in Web
    32 3. Quick search: Images
    33 4. Quick search: Videos
    34 5. Quick search: Wiki
    35 6. Quick text translator
    36 7. All search options are available in the fullscreen mode, ex.: search in Web
    37 8. Fullscreen mode: search of videos
     321. All XiSearch content tools together: bar and content hint
     332. XiSearch Content hint can be installed and used separately. The hint helps to get information immediately according to a highlighted word or a phrase.
     343. Get information immediately with Quick search options: search on site
     354. Quick search: Get information according to the main topic of the webpage using search in Web
     365. Quick search: Images
     376. Quick search: Videos
     387. Quick search: Wiki
     398. Quick text translator
     409. All search options are available in the fullscreen mode, ex.: search in Web
     4110. Fullscreen mode: search of videos
  • xisearch-bar/trunk/xisearch.php

    r490161 r521296  
    33Plugin Name: XiSearch bar
    44Plugin URI: http://www.xisearch.com
    5 Description: XiSearch smart search plugin. Enreach your website content with search on the site and in the Web, search images and video, Wiki and text translator. Get the script from the <a href="http://www.xisearch.com">http://www.xisearch.com</a> or use Express setting to choose your style of XiSearch bar.
    6 Version: 2.4
     5Description: XiSearch smart search plugin. Enreach your website content with toolbar and/or content hint that bring an additional useful information using search on the site and in the Web, search images and video, Wiki and text translator. Get the script from the <a href="http://www.xisearch.com">http://www.xisearch.com</a> or use Express setting to choose your style of XiSearch bar and content hint.
     6Version: 2.5
    77Author: XiSearch
    88*/
     
    2020    $xisearchTheme = get_option('XiSearchTheme');
    2121    $xisearchLanguage = get_option('XiSearchLanguage');
     22    $xisearchBarType = get_option('XiSearchBarType');
    2223   
    2324    if ($xisearchScriptPath != '') {
     
    7980            update_option('XiSearchLanguage', $xisearchLanguage);
    8081           
     82            if($_POST['xisearchBarType'] == 0) $xisearchScriptPath.="";
     83            else if($_POST['xisearchBarType'] == 1) $xisearchScriptPath.="2";
     84           
     85            $xisearchBarType = $_POST['xisearchBarType'];
     86            update_option('XiSearchBarType', $xisearchBarType);
    8187           
    8288            $xisearchScriptPath.=".js";
     
    164170                                <td valign="top" style="font-size:12px;font-style:italic;">You have to <a href="http://www.xisearch.com" target="_blank">register</a> to select another language</td></tr>
    165171                            </table>
     172                            <table id="xisearchtbl5" class="form-table" <?php  if($xisearchSettingsType==0) echo "disabled='true'"; ?>>
     173                                <tr><th valign="top" scrope="row"><label for="xisearchbartye1">XiSearch tools set:</label></th>
     174                                <td valign="top">
     175                                <input type="radio" name="xisearchBarType" value="0" <?php  if($xisearchBarType==0) echo "checked='checked'"; ?>>Bar + Content hint</input>&nbsp;&nbsp;
     176                                <input type="radio" name="xisearchBarType" value="1" <?php  if($xisearchBarType==1) echo "checked='checked'"; ?>>Only Content hint</input>&nbsp;&nbsp;
     177                                </td>
     178                                <td valign="top" style="font-size:12px;font-style:italic;">You have to <a href="http://www.xisearch.com" target="_blank">register</a> to select another language</td></tr>
     179                            </table>
    166180                        </fieldset>
    167181                        <br />
     
    182196            jQuery("#xisearchtbl3").attr("disabled", true);
    183197            jQuery("#xisearchtbl4").attr("disabled", true);
     198            jQuery("#xisearchtbl5").attr("disabled", true);
    184199            jQuery("#xisearchtbl1").removeAttr("disabled");
    185200        }
     
    190205        jQuery("#xisearchtbl3").removeAttr("disabled");
    191206        jQuery("#xisearchtbl4").removeAttr("disabled");
     207        jQuery("#xisearchtbl5").removeAttr("disabled");
    192208        }
    193209    }
Note: See TracChangeset for help on using the changeset viewer.