Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keygenqt/yii2-sceditor
Extension yii2 allowing to use library SCEditor.
https://github.com/keygenqt/yii2-sceditor
extensions yii2
Last synced: about 11 hours ago
JSON representation
Extension yii2 allowing to use library SCEditor.
- Host: GitHub
- URL: https://github.com/keygenqt/yii2-sceditor
- Owner: keygenqt
- License: apache-2.0
- Created: 2017-03-07T18:09:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T01:05:11.000Z (8 months ago)
- Last Synced: 2024-07-28T21:12:27.020Z (4 months ago)
- Topics: extensions, yii2
- Language: PHP
- Homepage: https://old.keygenqt.com/work/yii2-SCEditor
- Size: 138 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Yii2 SCEditor
===================![Packagist Downloads](https://img.shields.io/packagist/dt/keygenqt/yii2-SCEditor?label=Packagist%20Downloads)
Extension yii2 allowing to use library [SCEditor](https://www.sceditor.com/).
#### Installation
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
```
"require": {
"keygenqt/yii2-sceditor": "*"
}
```#### Usage
```php
= $form->field($model, 'text')->widget(\keygenqt\sceditor\SCEditor::className(), [
'jsOption' => [
'height' => 300,
'resizeWidth' => false,
'toolbar' => "bold,italic,underline,strike|bulletlist,orderedlist,horizontalrule|link,emoticon,image,youtube|date,time|unlink,removeformat" . (YII_DEBUG ? '|source' : ''),
'style' => 'minified/jquery.sceditor.default.min.css',
]
]) ?>
```#### License
```
Copyright 2017-2024 Vitaliy ZarubinLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```