Warning
href or img or any tags that have parameters, as the HTML code is stored in the database as-is.
Warning
href or img or any tags that have parameters, as the HTML code is stored in the database as-is.
html_print_logo() API function, which will display the logo specified by $g_logo_image (see Section 5.11, “Display”) with an URL link if one has been specified in $g_logo_url.
<div class="bg-primary text-center bigger-150 padding-8"> <?php html_print_logo() ?> </div>
$g_main_menu_custom_options = array(
array(
'title' => 'My Link',
'access_level' => MANAGER,
'url' => 'my_link.php',
'icon' => 'fa-plug'
),
array(
'title' => 'My Link2',
'access_level' => ADMINISTRATOR,
'url' => 'my_link2.php',
'icon' => 'fa-plug'
)
);
Note that if the caption is found in custom_strings_inc.php (see Section 7.1, “Strings / Translations”), it will be replaced by the corresponding translated string. Options will only be added to the menu if the current logged in user has the appropriate access level.