diff options
Diffstat (limited to 'admin/admin_search_inc.php')
| -rw-r--r-- | admin/admin_search_inc.php | 71 |
1 files changed, 36 insertions, 35 deletions
diff --git a/admin/admin_search_inc.php b/admin/admin_search_inc.php index d383c82..5bee3c7 100644 --- a/admin/admin_search_inc.php +++ b/admin/admin_search_inc.php @@ -1,4 +1,6 @@ <?php +namespace Bitweaver\Search; +use Bitweaver\KernelTools; // $Header$ @@ -6,63 +8,63 @@ // All Rights Reserved. See below for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details. -$feedback = array(); +$feedback = []; -$formSearchToggles = array( - 'search_stats' => array( +$formSearchToggles = [ + 'search_stats' => [ 'label' => 'Search Statistics', 'note' => 'Record searches made and their frequency.', // 'page' => 'SearchStats', - ), - 'search_index_on_submit' => array( + ], + 'search_index_on_submit' => [ 'label' => 'Index On Submit', 'note' => 'Index articles, blogs and wiki pages immdiately on submission. If unchecked, pages will be updated randomly according the the refresh rate below.', - ), -); + ], +]; -$formSearchInts = array( - 'search_refresh_rate' => array( +$formSearchInts = [ + 'search_refresh_rate' => [ 'label' => 'Search Refresh Rate', 'note' => 'Varies the rate at which updates to the search index are made, 1 = every page read, while rate>1 will introduce a random chance of a refresh every "rate" pages', - ), - 'search_min_wordlength' => array( + ], + 'search_min_wordlength' => [ 'label' => 'Minimum number of letters for search words', 'note' => 'By settings this value to 3, you can ignore search words such as "a" or "or", however searches for a number like "13" will be ignored as well.', - ), - 'search_max_syllwords' => array( + ], + 'search_max_syllwords' => [ 'label' => 'Maximum number of words', 'note' => 'The maximum number of words containing a syllable that can be serached for in any one search.', - ), - 'search_syll_age' => array( + ], + 'search_syll_age' => [ 'label' => 'Age in hours of search cache', 'note' => 'Define the Maximum age of cached search results for any given syllable. The results cache will be used to provide a search result if it is available, and will be cleared after either the age, or when the results cache reaches it\'s limit', - ), - 'search_lru_purge_rate' => array( + ], + 'search_lru_purge_rate' => [ 'label' => 'Least Recently Used (LRU) list purging rate', 'note' => 'Purge the results cache every "rate" pages. This will keep space available in the cache for new search results', - ), - 'search_lru_length' => array( + ], + 'search_lru_length' => [ 'label' => 'Least Recently Used (LRU) list length', 'note' => 'Limit the results cache to this number of entries', - ), -); + ], +]; if( !empty( $_REQUEST['del_index'] ) ) { - require_once( SEARCH_PKG_PATH.'/refresh_functions.php' ); + require_once SEARCH_PKG_INCLUDE_PATH.'/refresh_functions.php'; delete_index_content_type( $_REQUEST["where"] ); - $feedback['success'] = tra( "The search index was successfully deleted." ); + $feedback['success'] = KernelTools::tra( "The search index was successfully deleted." ); } if( !empty( $_REQUEST['del_index_reindex'] ) ) { - require_once( SEARCH_PKG_PATH.'/refresh_functions.php' ); + require_once SEARCH_PKG_INCLUDE_PATH.'/refresh_functions.php'; $count = rebuild_index( $_REQUEST["where"] ); - $feedback['success'] = tra( "The search index was successfully deleted." ).tra( "Number of items re-indexed" ).": ".$count; + $feedback['success'] = KernelTools::tra( "The search index was successfully deleted." ).KernelTools::tra( "Number of items re-indexed" ).": ".$count; } if( !empty( $_REQUEST['del_searchwords'] ) ) { - require_once( SEARCH_PKG_PATH.'/refresh_functions.php' ); + require_once SEARCH_PKG_INCLUDE_PATH.'/refresh_functions.php'; delete_search_words_and_syllables(); - $feedback['success'] = tra( "The searchwords were successfully purged from the database." ); + $feedback['success'] = KernelTools::tra( "The searchwords were successfully purged from the database." ); } if( !empty( $_REQUEST['store_prefs'] ) ) { @@ -82,12 +84,12 @@ $gBitSmarty->assign( 'formSearchToggles', $formSearchToggles ); $gBitSmarty->assign( 'formSearchInts', $formSearchInts ); $gBitSmarty->assign( 'feedback', $feedback ); -$formSearchTypeToggles = array( - 'search_restrict_types' => array( +$formSearchTypeToggles = [ + 'search_restrict_types' => [ 'label' => 'Restrict Types', - 'note' => 'If selected the search will be limited to those selected below.' - ), -); + 'note' => 'If selected the search will be limited to those selected below.', + ], +]; $gBitSmarty->assign( 'formSearchTypeToggles', $formSearchTypeToggles ); // allow selection of what packages can have search @@ -100,7 +102,7 @@ if( !empty( $_REQUEST['store_content'] ) ) { simple_set_toggle( $item, SEARCH_PKG_NAME ); } foreach( array_keys( $formSearchable['guids'] ) as $searchable ) { - $gBitSystem->storeConfig( $searchable, ( ( !empty( $_REQUEST['searchable_content'] ) && in_array( $searchable, $_REQUEST['searchable_content'] ) ) ? 'y' : NULL ), SEARCH_PKG_NAME ); + $gBitSystem->storeConfig( $searchable, !empty( $_REQUEST['searchable_content'] ) && in_array( $searchable, $_REQUEST['searchable_content'] ) ? 'y' : null, SEARCH_PKG_NAME ); } } @@ -115,7 +117,7 @@ $gBitSmarty->assign( 'formSearchable', $formSearchable ); /* usually done in mod_package_search.php - but the module can be not here the first time */ if( empty( $contentTypes ) ) { - $contentTypes = array( '' => tra( 'All Content' ) ); + $contentTypes = [ '' => KernelTools::tra( 'All Content' ) ]; foreach( $gLibertySystem->mContentTypes as $cType ) { if( $gBitSystem->getConfig( 'search_pkg_'.$cType['content_type_guid']) ) { $contentTypes[$cType['content_type_guid']] = $gLibertySystem->getContentTypeName( $cType['content_type_guid'] ); @@ -123,4 +125,3 @@ if( empty( $contentTypes ) ) { } $gBitSmarty->assign( 'contentTypes', $contentTypes ); } -?> |
