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

config_merge_non_image_types()

Description

Merge all non image configurations

Parameters

This function accepts no parameters.

Return

array Returns merged array of non image configurations.

Location

include/config_functions.php lines 1307 to 1319

Definition

 
function config_merge_non_image_types()
    {
    global 
$non_image_types,$ffmpeg_supported_extensions,$unoconv_extensions,$ghostscript_extensions;

    return 
array_unique(
        
array_map(
            
'strtolower',
            
array_merge(
                
$non_image_types,
                
$ffmpeg_supported_extensions,
                
$unoconv_extensions,
                
$ghostscript_extensions)));
    }

This article was last updated 19th March 2024 02:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.