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

get_tab_name_options()

Description

Get list of all tabs sorted based on current configuration. This always adds a fake record (ref #0) to indicate no assignment.

Parameters

This function accepts no parameters.

Return

array Key is the tabs' ID and value its translated name.

Location

include/tab_functions.php lines 87 to 92

Definition

 
function get_tab_name_options()
    {
    
// The no selection option is always first
    
$tabs array_map('i18n_get_translated', [=> ''] + array_column(get_all_tabs(), 'name''ref'));
    return 
sort_tabs_as_configured($tabs);
    }

This article was last updated 19th March 2024 02:05 Europe/London time based on the source file dated 18th August 2023 11:35 Europe/London time.