Giter VIP home page Giter VIP logo

Comments (4)

gergo85 avatar gergo85 commented on September 27, 2024 1

I made a plugin for you:

  1. Create the following folder: /plugins/indikator/newseditor

  2. Create a Plugin.php file.

  3. Copy the following code into the file:

<?php namespace Indikator\NewsEditor;

use System\Classes\PluginBase;
use Indikator\News\Controllers\Posts as NewsController;
use Indikator\News\Models\Posts as NewsModel;

class Plugin extends PluginBase
{
    public function pluginDetails()
    {
        return [
            'name'        => 'Extend editor',
            'description' => 'Change the toolbar of default editor in the News plugin.',
            'author'      => 'Gergő Szabó',
            'homepage'    => 'http://www.indikator.hu'
        ];
    }

    public function boot()
    {
        NewsController::extendFormFields(function($form, $model, $context)
        {
            if (!$model instanceof NewsModel) {
                return;
            }

            $form->addTabFields([
                'content' => [
                    'tab'  => 'indikator.news::lang.form.content',
                    'type' => 'richeditor',
                    'size' => 'giant',
                    'toolbarButtons' => 'fullscreen|bold|italic|underline|subscript|superscript|fontFamily|fontSize|color|inlineStyle|paragraphStyle|paragraphFormat|align|formatOL|formatUL|outdent|indent|quote|insertHR|insertLink|insertImage|insertVideo|insertAudio|insertFile|insertTable|undo|redo|clearFormatting|selectAll|html'
                ]
            ]);
        });
    }
}

from oc-news.

gergo85 avatar gergo85 commented on September 27, 2024

Hi,

I use the default toolbar. If you like to extend this (or other) plugin, please see this documentation: http://octobercms.com/docs/backend/forms#extend-form-fields

from oc-news.

plyusninva avatar plyusninva commented on September 27, 2024

I use the default toolbar.

the default toolbar it's good, but after every update of your plugin I have to update the file "/models/posts/fields.yml". It is very uncomfortable.

from oc-news.

plyusninva avatar plyusninva commented on September 27, 2024

Thank you, I did not know that it was possible :)

from oc-news.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.