So I'm modifying the blue theme to my own needs, I want to add an icon before the links in the header but inserting an image in PHP is just horror...
Trying to insert the image into this piece of code:
Tried this:
This:
And this:
But that all doesn't seem to work out.
Also, what is this
function?
Trying to insert the image into this piece of code:
Code:
$headerNavigation['Home'] = array(
'link_url' => coreFunctions::getCoreSitePath() . '/account_home.' . SITE_CONFIG_PAGE_EXTENSION,
'link_text' => t ('Your_Files', 'Your Files'),
'user_level_id' => range(1, 20),
'position' => 30
Code:
$headerNavigation['Home'] = array(
'link_url' => coreFunctions::getCoreSitePath() . '/account_home.' . SITE_CONFIG_PAGE_EXTENSION,
'link_text' => t ('Your_Files', '<img src="path/to/my/img"> Your Files'),
'user_level_id' => range(1, 20),
'position' => 30
Code:
$headerNavigation['Home'] = array(
'link_url' => coreFunctions::getCoreSitePath() . '/account_home.' . SITE_CONFIG_PAGE_EXTENSION,
'link_text' => t ('Your_Files', echo '<img src="path/to/my/img"> Your Files'),
'user_level_id' => range(1, 20),
'position' => 30
Code:
$headerNavigation['Home'] = array(
'link_url' => coreFunctions::getCoreSitePath() . '/account_home.' . SITE_CONFIG_PAGE_EXTENSION,
'link_text' => t ('Your_Files', ?> '<img src="path/to/my/img"> Your Files'), <?php
'user_level_id' => range(1, 20),
'position' => 30
Also, what is this
Code:
t