trntv/yii2-aceeditor

Yii2 ajax.org Ace Editor widget

Maintainers

👁 trntv

Package info

github.com/trntv/yii2-aceeditor

Type:yii2-extension

pkg:composer/trntv/yii2-aceeditor

Statistics

Installs: 831 618

Dependents: 27

Suggesters: 0

Stars: 43

Open Issues: 2

2.1.2 2018-04-04 06:42 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause 807ce92d46375308b9ca55d4ceeda12ba632dfae

  • Eugene Terentev <eugene.woop@terentev.net>

yiicode editoraceeditor

This package is auto-updated.

Last update: 2026-06-22 12:19:57 UTC


README

About

It is Ace Editor integration for Yii2 framework.

Demo

Since this package was created as a part of (Yii2 Starter Kit)yii2-starter-kit it's demo can be found in starter kit demo here (login: webmaster, password: webmaster)

Ace Editor demo can be found here

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require trntv/yii2-aceeditor

or add

"trntv/yii2-aceeditor": "^2.0.0"

to the require section of your composer.json file.

Usage

Using model

trntv\aceeditor\AceEditor::widget([
	// You can either use it for model attribute
	'model' => $my_model,
	'attribute' => 'my_field',

	// or just for input field
	'name' => 'my_input_name',

 'mode'=>'html', // programing language mode. Default "html"
 'theme'=>'github', // editor theme. Default "github"
 'readOnly'=>'true' // Read-only mode on/off = true/false. Default "false"
]);

With active field

$form->field($model, 'field')->widget(
 'trntv\aceeditor\AceEditor',
 [
 'mode'=>'html', // programing language mode. Default "html"
 'theme'=>'github', // editor theme. Default "github"
 'readOnly'=>'true' // Read-only mode on/off = true/false. Default "false"
 ]
 )

Lists of all available modes and themes see here