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

allowPromotedResources()

Description

Confirms whether a dash tile type allows for promoted resources

Parameters

ColumnTypeDefaultDescription
$tile_type string

Return

boolean

Location

include/dash_functions.php lines 1675 to 1685

Definition

 
function allowPromotedResources($tile_type)
    {
    if(
'' === trim($tile_type))
        {
        return 
false;
        }

    
$allowed_types = array('srch''fcthm');

    return 
in_array($tile_type$allowed_types);
    }

This article was last updated 25th April 2024 20:05 Europe/London time based on the source file dated 25th April 2024 16:15 Europe/London time.