Collections functions
General 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 1665 to 1675

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 10th December 2023 06:05 Europe/London time based on the source file dated 26th July 2023 22:50 Europe/London time.