View Full Version : justify bbcode for vb.4.2
aminp30
05-31-2014, 10:11 AM
hi guys
i need to add justify bbcode, but not as a custom bbcode.
I found the code in class_bbcode.php --> line 3542. and added this code
// [JUSTIFY]
$tag_list['no_option']['justify'] = array(
'html' => '<div style="text-align: justify;">%1$s</div>',
'ignore_global_strip_space_after' => true,
'strip_empty' => true,
'strip_space_after' => 1
);
it works great by typing but I can't add button for it next to left align button. what should i do? :confused:
JacquiiDesigns
06-01-2014, 07:28 PM
Hmmm. Why revise the actual class_bbcode.php file?!
Don't you think the purpose of the default custom bbcode functionality is to... add custom bbcodes easily and without the need of modifying the vB script...?
As for what you should do? Really haven't a clue.
Good luck with it though.
J.
aminp30
06-02-2014, 07:05 PM
Hmmm. Why revise the actual class_bbcode.php file?!
Don't you think the purpose of the default custom bbcode functionality is to... add custom bbcodes easily and without the need of modifying the vB script...?
As for what you should do? Really haven't a clue.
Good luck with it though.
J.
thanks for reply dear Jacquii
I need put justify button next to left align or right align. by adding custom bbcode it's not posible
JacquiiDesigns
06-02-2014, 10:55 PM
thanks for reply dear Jacquii
I need put justify button next to left align or right align. by adding custom bbcode it's not posible
I really have no idea how you'd add that code into actual .php files.
If you use the built-in custom bbcode functionality though - there's a formfield that allows you to easily use the justify button/image of your choice. There's really no need to edit the class_bbcode.php for what you're trying to accomplish.
J.
Spangle
06-07-2014, 01:06 PM
There is a fix for those that want justify by altering the relative code, that way all post are automatically justified, it also works in the blog.
**EDIT**
See this post
https://vborg.vbsupport.ru/showthread.php?t=298096&highlight=justify+text
This tell you how to do it for the Forum and for Blogs
aminp30
06-10-2014, 04:38 PM
There is a fix for those that want justify by altering the relative code, that way all post are automatically justified, it also works in the blog.
**EDIT**
See this post
https://vborg.vbsupport.ru/showthread.php?t=298096&highlight=justify+text
This tell you how to do it for the Forum and for Blogs
Thank you but this is not what exactly I'm looking for.
I need to add justify button next to other justify buttons.
aminp30
07-21-2014, 02:39 AM
Is there any idea?
tbworld
07-21-2014, 06:06 PM
hi guys
i need to add justify bbcode, but not as a custom bbcode.
I found the code in class_bbcode.php --> line 3542. and added this code
// [JUSTIFY]
$tag_list['no_option']['justify'] = array(
'html' => '<div style="text-align: justify;">%1$s</div>',
'ignore_global_strip_space_after' => true,
'strip_empty' => true,
'strip_space_after' => 1
);
it works great by typing but I can't add button for it next to left align button. what should i do? :confused:
1.) In "bbcode.php" remove your 'justify' tag or rename it to 'justifyold'. This is hindering you, more then you know.
2.) Create a 'justify' bbcode using your HTML and include an icon.
- Make sure it has been added it to the CKEDITOR before proceeding. -- Yes, I know it is in the wrong position, please continue.
- Note: There is no justify icon in the sprite, thus the need to add one.
3.) In '/vb/ckeditor.php':
Find:
$justify = (vB::$vbulletin->stylevars['textdirection']['string'] == 'ltr' ? array('JustifyLeft', 'JustifyCenter', 'JustifyRight') : array('JustifyRight', 'JustifyCenter', 'JustifyLeft'));
Replace:
$justify = (vB::$vbulletin->stylevars['textdirection']['string'] == 'ltr' ? array('JustifyLeft', 'JustifyCenter', 'JustifyRight', 'justify') : array('JustifyRight', 'JustifyCenter', 'JustifyLeft', 'justify'));
(You can also do this in the php hook "editor_toolbar_set". It is just a bit more envolved.)
4.) Create a plugin at hook "editor_custom_toolbar_loop":
// Hook: editor_custom_toolbar_loop
// Desc: Editor - Remove 'BBCODE' icon from the end of the toolbar chain.
if ($title === 'justify') unset($title);
Make sure your bbcode name is correct in all locations.
aminp30
07-21-2014, 08:13 PM
nice tutorial tbworld, but I think there is a little problem.
I created a custom bbcode correctly.(it worked perfect)
but the replace code in '/vb/ckeditor.php' does not work
and the plugin works perfect and remove justify from the end
I think your 3rd step needs a bit change.
would you please check it out?
tbworld
07-21-2014, 08:20 PM
I think your 3rd step needs a bit change.
would you please check it out?
Oops ... corrected above. Thanks.
--------------- Added 1405978076 at 1405978076 ---------------
If you find a descent justify icon for the ckeditor, you might want to attach it to the post -- for others.
--------------- Added 1405980722 at 1405980722 ---------------
Comment -- This really needs a full JavaScript plugin to handle exceptions. Image placement and spacing is not handled correctly with just a simple HTML solution.
aminp30
07-21-2014, 09:33 PM
Oops ... corrected above. Thanks.
--------------- Added 1405978076 at 1405978076 ---------------
If you find a descent justify icon for the ckeditor, you might want to attach it to the post -- for others.
--------------- Added 1405980722 at 1405980722 ---------------
Comment -- This really needs a full JavaScript plugin to handle exceptions. Image placement and spacing is not handled correctly with just a simple HTML solution.
Great!
It works perfect. thanks a lot dear tbworld
Yes of course
I have two justify icon and also edited sprite.png and added justify and rtl and ltr.
Excuse me but I have another question. is there any way to use this bbcode as like as right and left and center? I mean it just affect on Source mode with no interface in normal mode?
Let's me thank you again for your tutorial.
tbworld
07-21-2014, 09:48 PM
Excuse me but I have another question. is there any way to use this bbcode as like as right and left and center? I mean it just affect on Source mode with no interface in normal mode?
Glad your up and running... :)
Unfortunately, I cannot understand the next question. Could you clarify? Thanks. :)
aminp30
07-21-2014, 10:04 PM
Glad your up and running... :)
Unfortunately, I cannot understand the next question. Could you clarify? Thanks. :)
ummmm! when you click on center button for example, in normal mode there is no tag but in source mode you can see [ center ] tag.
now if you click on justify button you can see [ justify ] tag both in normal and source mode.
is there any way to hide this tag in normal mode as like as other justify buttons?
was it clear?
tbworld
07-21-2014, 10:26 PM
Thank you for restating. Let me look at it a bit, and the answer is yes. I just didn't notice it was there. I am a little surprised it is not stripped by default, but obviously I overlooked something.
Quick fixes are never quick :)
I will take a look at it later today, thanks for pointing it out. If I have time I will rewrite the plugin in JavaScript and fix the image positioning problems.
aminp30
07-21-2014, 10:43 PM
Thank you for restating. Let me look at it a bit, and the answer is yes. I just didn't notice it was there. I am a little surprised it is not stripped by default, but obviously I overlooked something.
Quick fixes are never quick :)
I will take a look at it later today, thanks for pointing it out. If I have time I will rewrite the plugin in JavaScript and fix the image positioning problems.
nice sentence! :D
thanks a lot, :flower:
I taked a look at plugin.js in justify folder in "clientscript\ckeditor\plugins".
Justify completely defined there. look at this codes:
CKEDITOR.plugins.add( 'justify',
{
init : function( editor )
{
var left = new justifyCommand( editor, 'justifyleft', 'left' ),
center = new justifyCommand( editor, 'justifycenter', 'center' ),
right = new justifyCommand( editor, 'justifyright', 'right' ),
justify = new justifyCommand( editor, 'justifyblock', 'justify' );
I think these codes are OK. the problem is somewhere else.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.