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 3286 to 3307

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 18th May 2024 21:35 Europe/London time based on the source file dated 13th May 2024 14:40 Europe/London time.