39.7 GET_LANGUAGE_SELECTOR_LIST Function
This function determines which languages the current application is translated into and returns the language selector as an HTML snippet. You can use this function in a Dynamic Content region to include the language selector.
Syntax
APEX_LANG.GET_LANGUAGE_SELECTOR_LIST
RETURN VARCHAR2;
Parameters
None.
Returns
This function returns the language selector as an HTML snippet.
Example
The following example demonstrates how to return the language selector as an HTML snippet.
DECLARE
l_content varchar2;
BEGIN
l_content := apex_lang.get_language_selector_list;
RETURN l_content;
END;
Parent topic: APEX_LANG