Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

get_nopreview_html()

Description

Returns the HTML necessary to represent a resource with the given extension when no image preview exists.

Parameters

ColumnTypeDefaultDescription
$extension string File extension

Return

string

Location

include/resource_functions.php lines 8097 to 8101

Definition

 
function get_nopreview_html($extension)
    {
    
$extension=strtolower(trim($extension));
    return 
"<i class='nopreview fa fa-solid " . (FONTAWESOME_EXTENSIONS[$extension] ?? FONTAWESOME_EXTENSIONS["default"]) . "'></i>";
    }

This article was last updated 18th October 2024 09:35 Europe/London time based on the source file dated 15th October 2024 15:25 Europe/London time.