mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
26 lines
1.1 KiB
Smarty
26 lines
1.1 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename text_format.tpl ##
|
|
## Developed by: Dixie ##
|
|
## License: TravianZ Project ##
|
|
## Copyright: TravianZ (c) 2010-2025. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
|
|
$txt="%TEKST%";
|
|
|
|
//bbcode = html code
|
|
$txt = preg_replace("/\[b\]/is",'<b>', $txt);
|
|
$txt = preg_replace("/\[\/b\]/is",'</b>', $txt);
|
|
$txt = preg_replace("/\[i\]/is",'<i>', $txt);
|
|
$txt = preg_replace("/\[\/i\]/is",'</i>', $txt);
|
|
$txt = preg_replace("/\[u\]/is",'<u>', $txt);
|
|
$txt = preg_replace("/\[\/u\]/is",'</u>', $txt);
|
|
|
|
//nl2br = enter
|
|
echo nl2br($txt);
|
|
|
|
?> |