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 3272 to 3293

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 5th May 2024 11:05 Europe/London time based on the source file dated 3rd May 2024 14:45 Europe/London time.