srnden/yii2-alloy-editor

Yii2 Alloy Editor widget. https://alloyeditor.com/

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

Type:yii2-extension

1.0.1 2024-09-30 12:18 UTC

This package is auto-updated.

Last update: 2024-09-30 12:25:46 UTC


README

Yii2 Alloy Editor

=================

Yii2 Alloy Editor widget. https://alloyeditor.com/

Installation

The preferred way to install this extension is through composer.

Either run


php composer.phar require --prefer-dist srnden/yii2-alloy-editor "~1.0.0"

or add


"srnden/yii2-alloy-editor": "~1.0.0"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?php
use yii\helpers\Url;
use srnden\alloyeditor\AlloyEditor;
?>

<?php AlloyEditor::begin([
    'language' => 'ru',
    'saveAction' => Url::to(['site/alloy-test'], true), // required
    'imageSaveType' => AlloyEditor::IMAGE_SAVE_TYPE_UPLOAD,
    //'imageSaveAction' => // You save image action. If not set, the module action is used.
]); ?>

    <h2>Heading</h2>

    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore
        et
        dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
        aliquip
        ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
        dolore eu
        fugiat nulla pariatur.</p>


<?php AlloyEditor::end(); ?>