The CKEditor demo on the CKEditor website shows two language direction buttons on the toolbar as shown in the attached image.

Is it possible to enable these items somehow when using ckeditor with the wysiwyg plugin?

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

timdiacon’s picture

Category: support » feature

Right I've worked out how to do this, you need to add the code below to line 321 of ckeditor.inc (function name wysiwyg_ckeditor_plugins)

'BidiLtr' => t('Lang LTR;'), 'BidiRtl' => t('Lang RTL'),

It would be great to have this update included in the next release so I'm going to amend category to feature request

ethnovode’s picture

The buttons for ltr/rtl are available in tinymce but not in ckeditor. Would be nice to have.
Thanks timdiacon.

TwoD’s picture

Version: 6.x-2.3 » 7.x-2.x-dev
Component: Plugins » Editor - CKEditor
Status: Active » Needs review
FileSize
1.19 KB

Oops, these buttons were overlooked...

Looks like they were added in CKEditor 3.4b build 5808, see ticket #5909 and the changelog.

I tested the patch with releases 3.3.2, 3.4b and 3.6 to make sure the buttons are only available for the relevant versions and have not been removed recently.

EDIT: We normally create patches against the master branch, but this one should apply to all.

prabhatjn’s picture

Status: Needs review » Reviewed & tested by the community

This patch works!!
Is it already committed?

Perry.

TwoD’s picture

Status: Reviewed & tested by the community » Fixed
FileSize
1.76 KB

Fixed the incorrect button name in in the unset() and committed this to all branches.

The -dev snahpshots will be updated within 12hrs and this patch will be in the next release.
Thanks for reporting, patching, testing and commenting!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

hefox’s picture

Version: 7.x-2.x-dev » 6.x-2.x-dev
Status: Closed (fixed) » Needs review

Any chance of backport?

Patch seems to work fine so far.