PLUGIN_0_TXT token

ilkerkoc

New member
Joined
Feb 22, 2013
Messages
2
I am creating a brand new skin and have a question

in /usr/local/directadmin/data/skins/enhanced/user/show_domain.html file I am editing

<a href="/CMD_LOGIN_KEYS">|LANG_LOGIN_KEYS|</a>

to

<a href="/CMD_LOGIN_KEYS" class="icon-btn span2">
<i class="icon-sitemap"></i>
<div>|LANG_LOGIN_KEYS|</div>
</a>

no problem

BUT

When I am editing additional plugins links the code goes:



|$/usr/local/bin/php
<?php
$data = <<<END
|PLUGIN_2_TXT|
END;
if (strlen($data) > 1)
{
echo <<<END
|PLUGIN_2_TXT|<br>
|PLUGIN_3_TXT|<br>
|PLUGIN_4_TXT|<br>
|PLUGIN_6_TXT|<br>
|PLUGIN_8_TXT|
END;
}
?>
DONE|


How can I edit the plugin link and name in code look like

<a href="/PLUGIN_LINK" class="icon-btn span2">
<i class="icon-sitemap"></i>
<div>|LANG_PLUGIN_NAMES|</div>
</a>

Thanks?
 
Back
Top