Collections functions
General 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 3270 to 3291

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 10th December 2023 17:35 Europe/London time based on the source file dated 6th December 2023 14:10 Europe/London time.