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 1418 to 1433

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 5th June 2025 21:35 Europe/London time based on the source file dated 4th June 2025 16:05 Europe/London time.