BB Code bei Link us

Forum rules
This forum is not for support requests.

Only post Modifications for Board3 Portal 1.0.x in this forum.
Locked
User avatar

Topic author
gamingboard
Active Member
Posts: 26
Joined: 20. November 2009 15:44
phpBB.de User: gamingboard
phpBB.com User: gamingboard
Location: Free and Hanseatic City of Hamburg, Germany
Contact:

BB Code bei Link us

Post 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
Last edited by gamingboard on 9. January 2010 11:29, edited 3 times in total.
User avatar

Mike
Former Team Member
Posts: 1862
Joined: 3. July 2008 23:59
Location: Schwarzwald / FDS
Contact:

Re: BB Code bei Link us

Post by Mike »

gamingboard wrote:Speichern und Templates löschen
Du meinst sicher die Template Caches, oder? Alles andere wäre eher Kontraproduktiv ;)
kein Support per PN / Messenger
no Support via PM / Messenger
User avatar

Topic author
gamingboard
Active Member
Posts: 26
Joined: 20. November 2009 15:44
phpBB.de User: gamingboard
phpBB.com User: gamingboard
Location: Free and Hanseatic City of Hamburg, Germany
Contact:

Re: BB Code bei Link us

Post by gamingboard »

Da hab ich wohl nicht zu ende gedacht. :roll:
Locked

Return to “board3 Portal v1.0.x - Modifications in Dev”