Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

get_search_params()

Description

Get all search request parameters. Note that this does not escape the
parameters which must be sanitised using e.g. htmlspecialchars() or urlencode() before rendering on page

Parameters

This function accepts no parameters.

Return

array()

Location

include/search_functions.php lines 3279 to 3300

Definition

 
function get_search_params()
    {
    
$searchparams = array(
        
"search"        =>"",
        
"restypes"      =>"",
        
"archive"       =>"",
        
"order_by"      =>"",
        
"sort"          =>"",
        
"offset"        =>"",
        
"k"             =>"",
        
"access"        =>"",
        
"foredit"       =>"",
        
"recentdaylimit"=>"",
        
"go"            =>"",
        );
    
$requestparams = array();
    foreach(
$searchparams as $searchparam => $default)
        {
        
$requestparams[$searchparam] = getval($searchparam,$default);
        }
    return 
$requestparams;
    }

This article was last updated 19th March 2024 07:05 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.