XenForo
Administrative
- Thread starter
- Admin
- #1
I need a script (or a method) to convert certain keywords in a BBCODE type text.
In example:
Keywords to find: TEST1-, TEST2-
BBCODE: [MYBBCODE]
This post:
Will change to:
I do accomplish the above in vB, with the following PHP (but I don't know how to convert it in a XF addon):
Code:
Read more
ادامه مطلب...
In example:
Keywords to find: TEST1-, TEST2-
BBCODE: [MYBBCODE]
This post:
TEXT TEST1-123 TEXT
TEXT TEST2-123 TEXT
Click to expand...
Will change to:
---TEXT [MYBBCODE]TEST1-123[/MYBBCODE] TEXT
TEXT [MYBBCODE]TEST2-123[/MYBBCODE] TEXT
Click to expand...
I do accomplish the above in vB, with the following PHP (but I don't know how to convert it in a XF addon):
Code:
$advanced_bbcode = array(...
Read more
ادامه مطلب...