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_report_name()

Description

Retrieves the name of a report

Parameters

ColumnTypeDefaultDescription
$report array The report array containing at least a 'name' key.

Return

string The translated report name.

Location

include/reporting_functions.php lines 10 to 19

Definition

 
function get_report_name($report)
{
    
# Translates or customizes the report name.
    
$customName hook('customreportname''', array($report));
    if (
$customName) {
        return 
$customName;
    }

    return 
lang_or_i18n_get_translated($report["name"], "report-");
}

This article was last updated 17th November 2024 15:35 Europe/London time based on the source file dated 7th November 2024 17:40 Europe/London time.