Page 1 of 1

BB Code bei Link us

Posted: 21. November 2009 10:48
by gamingboard
Es ist eigentlich kein Mod aber ich dachte es sei ganz nützlich. Es fügt unter dem Hmtl Tag auch ein BB-Code für Foren hinzu.

Öffne / open: portal/block/link_us.php

Suche / search:

Code: Select all

'U_LINK_US'            => '<a&nbsp;href="' . $u_link . '"&nbsp;' . (($config['site_desc']) ? 'title="' . $config['site_desc'] . '"' : '' ) . '>' . (($config['sitename']) ? $config['sitename'] : $u_link ) . '</a>', 
Ersetzte mit / Replace with:

Code: Select all

'U_LINK_US_HTML'    => '<a&nbsp;href="' . $u_link . '"&nbsp;' . (($config['site_desc']) ? 'title="' . $config['site_desc'] . '"' : '' ) . '>' . (($config['sitename']) ? $config['sitename'] : $u_link ) . '</a>',
    'U_LINK_US_BB'        => '[url=' . $u_link . ']' . (($config['sitename']) ? $config['sitename'] : $u_link ) . '[/url]', 
Öffne / open: styles/your style/template/portal/link_us.html

Suche /search:

Code: Select all

<input type="text" tabindex="9" size="28" value="{U_LINK_US}" class="inputbox autowidth" onclick="this.focus();this.select();" /><br />
Ersetzte mit / Replace with:

Code: Select all

Html:<br />
	<input type="text" tabindex="9" size="28" value="{U_LINK_US_HTML}" class="inputbox autowidth" onclick="this.focus();this.select();" /><br />
	BB-Code:<br />
	<input type="text" tabindex="9" size="28" value="{U_LINK_US_BB}" class="inputbox autowidth" onclick="this.focus();this.select();" /><br />
Öffne / open: language/de/mods/lang_portal.php

Suche / search:

Code: Select all

'LINK_US_TXT'                    => 'Benutze bitte diesen Link um <strong>%s</strong> bei dir zu verlinken:', 
Ersetzte mit / Replace with:

Code: Select all

'LINK_US_TXT'                    => 'Benutze bitte diese Links um <strong>%s</strong> bei dir zu verlinken:', 
Öffne / open: language/en/mods/lang_portal.php

Suche / search:

Code: Select all

'LINK_US_TXT'    => 'Please feel free to link to <strong>%s</strong>. Use the following HTML:', 
Ersetzte mit / Replace with:

Code: Select all

'LINK_US_TXT'    => 'Please feel free to link to <strong>%s</strong>. Use the following codes:', 
Speichern und Templates Chache löschen
Save and clean the Templates chache

Re: BB Code bei Link us

Posted: 23. November 2009 23:41
by Mike
gamingboard wrote:Speichern und Templates löschen
Du meinst sicher die Template Caches, oder? Alles andere wäre eher Kontraproduktiv ;)

Re: BB Code bei Link us

Posted: 6. December 2009 22:39
by gamingboard
Da hab ich wohl nicht zu ende gedacht. :roll: