0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: search.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: search.php 34031 2011-04-19 12:39:06Z lphuberdeau $ function prefs_search_list() { return array ( 'search_parsed_snippet' => array( 'name' => tra('Parse the results'), 'hint' => tra('May impact performance'), 'type' => 'flag', ), 'search_default_where' => array( 'name' => tra('Default where'), 'description' => tra('When object filter is not on, limit to search one type of object'), 'type' => 'list', 'options' => array( '' => tra('Entire site'), 'wikis' => tra('Wiki Pages'), 'trackers' => tra('Trackers'), ), ), 'search_default_interface_language' => array( 'name' => tra('Restrict search language by default'), 'description' => tra('If enabled, only search content in the interface language, by default.'), 'type' => 'flag', ), 'search_autocomplete' => array( 'name' => tra('Autocomplete on page names'), 'type' => 'flag', 'dependencies' => array('feature_jquery_autocomplete', 'javascript_enabled'), ), ); }