session_getsearch

Declaration

session_getsearch(mixed$module): string
Source: /includes/common/session.php
The function retrieves saved search parameters for a given module from global variables. If the variable exists and is not empty, it deserializes the value and returns it; otherwise, it returns an empty string. It uses eval() calls to dynamically access global variables, which is considered a security risk.

Parameters

  • $module

Return values

string

See also