https://github.com/yiier/yii2-xheditor
XhEditor WYSIWYG widget for Yii2.
https://github.com/yiier/yii2-xheditor
Last synced: 2 months ago
JSON representation
XhEditor WYSIWYG widget for Yii2.
- Host: GitHub
- URL: https://github.com/yiier/yii2-xheditor
- Owner: yiier
- Created: 2014-12-20T15:01:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-21T21:53:17.000Z (over 10 years ago)
- Last Synced: 2024-04-14T08:31:40.966Z (about 1 year ago)
- Language: JavaScript
- Size: 1.18 MB
- Stars: 1
- Watchers: 15
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
yii2-xheditor
=============XhEditor WYSIWYG widget for Yii2.
Installation
------------
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).add
```json
"yiier/yii2-xheditor" : "*"
```to the require section of your application's `composer.json` file.
add this too ^_^
```json"repositories":[
{
"type":"vcs",
"url":"https://github.com/yiier/yii2-xheditor"
}
],```
basic usage :
---------------
~~~use yiier\xheditor\XhEditor;
= $form->field($model, 'text')->widget(XhEditor::className(), [
'options' => ['rows' => 6],
]) ?>
~~~