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

is_not_wildcard_only()

Description

Helper function to check a string is not just the asterisk.

Parameters

ColumnTypeDefaultDescription
$str string The string to be checked.

Return

boolean

Location

include/search_functions.php lines 3303 to 3306

Definition

 
function is_not_wildcard_only(string $str)
    {
    return 
trim($str) !== '*';
    }

This article was last updated 5th May 2024 13:05 Europe/London time based on the source file dated 3rd May 2024 14:45 Europe/London time.