wbraganca/yii2-ace-widget Yii2 Ace (Ajax.org Cloud9 Editor) Widget

aceace-editorcloud9editor

Yii2 Ace (Ajax.org Cloud9 Editor) Widget

Latest Stable Version Total Downloads Latest Unstable Version License

Ace (Ajax.org Cloud9 Editor) source repository can be found here - https://github.com/ajaxorg/ace.

Original demo can be found here - http://ace.c9.io/#nav=embedding.

Installation

The preferred way to install this extension is through composer.

Either run

$ php composer.phar require "wbraganca/yii2-ace-widget" "*"

or add

"wbraganca/yii2-ace-widget": "*"

to the require section of your composer.json file.

Usage

<?php
use wbraganca\AceEditor\AceEditorWidget;

// For basic usage
echo AceEditorWidget::widget([
    'name' => 'editor_name',
    'value' => 'your text code',
]);

// Ace editor with emmet
$this->registerJsFile('https://cloud9ide.github.io/emmet-core/emmet.js');
echo AceEditorWidget::widget([
    'id' => 'attribute_id',
    'model' => $model,
    'attribute' => 'attribute_name',
    'theme' => 'sqlserver',
    'extensions' => [
        'emmet'
    ],
    'aceOptions' => [
        'showPrintMargin' => false,
        'minLines' => 20,
        'maxLines' => 500,
        'newLineMode' => 'unix'
    ]
]);
?>

Options

  • varNameAceEditor - global javascript variable (default is aceEditor).
  • mode - code language (default is php).
  • theme - color scheme (default is github).
  • editable - whether to display editable text input or just highlight the output (default is true).
  • autocompletion - whether to enable simple autocompletion functionality (only with editable = true).
  • aceOptions - ACE's editor options.

Changelog

yii2-ace-widget change Log

dev-master

version 1.0.0

Date: 11-Set-2015

Initial release

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



1.0.0 is the latest of one release



BSD-3-Clause license
Stats
0 github stars & 2 github forks
1 downloads in the last day
94 downloads in the last 30 days
14380 total downloads