Back to CKeditor Support

dan7426
dan7426

I just installed October along with this plugin version 1.0.12 but the CKEditor entry does not show up in the Settings menu. I found that I could get the entry to show up by removing or commenting out a line from the registerSettings function in Plugin.php

public function registerSettings()
{
    return [
        'settings' => [
            'label'       => 'CKEditor',
            'description' => 'Manage CKEditor preferences.',
            'icon'        => 'icon-paperclip',
            // 'context'     => 'mysettings',
            'category'    =>  SettingsManager::CATEGORY_MYSETTINGS,
            'class'       => 'ShahiemSeymor\Ckeditor\Models\Settings'
        ]
    ];
}

The October documentation of the keys to use in this function does not cover the 'context' key, but there is not really enough documentation for the other keys either so I couldn't tell what this could be used for.

dan7426
dan7426

Sorry after reading another thread I figured out what that is for. With the context key set to 'mysettings', the link to the CKEditor menu can be found by clicking on your username in the upper right corner. No changes needed. Thanks!

lenn.dewit7255
lenn.dewit7255

dan7426 said:

Sorry after reading another thread I figured out what that is for. With the context key set to 'mysettings', the link to the CKEditor menu can be found by clicking on your username in the upper right corner. No changes needed. Thanks!

This actually solved SO much for me!! I couldn't find any plug-in under the 'mysettings' as it was changed from the left side to the menu when clicking on your profile icon. Thank you so much!!!!

1-3 of 3