ImperaviRedactorWidget
is a wrapper for Imperavi Redactor,
a high quality WYSIWYG editor.
Note that Imperavi Redactor itself is a proprietary commercial copyrighted software but since Yii community bought OEM license you can use it for free with Yii.
First, import the widget class file
Yii::import('ext.imperavi-redactor-widget.ImperaviRedactorWidget');
Next, call the widget:
$this->widget('ImperaviRedactorWidget', array(
// You can either use it for model attribute
'model' => $my_model,
'attribute' => 'my_field',
// or just for input field
'name' => 'my_input_name',
// Some options, see http://imperavi.com/redactor/docs/
'options' => array(
'lang' => 'ru',
'toolbar' => false,
'iframe' => true,
'css' => 'wym.css',
),
));
Alternatively you can attach Redactor to already existing DOM element by calling:
$this->widget('ImperaviRedactorWidget', array(
// The textarea selector
'selector' => '.redactor',
// Some options, see http://imperavi.com/redactor/docs/
'options' => array(),
));
The redactor plugins plugged in with packages of resources.
$this->widget('ImperaviRedactorWidget', array(
'selector' => '.redactor',
'options' => array(
'lang' => 'ru',
),
'plugins' => array(
'fullscreen' => array(
'js' => array('fullscreen.js',),
),
'clips' => array(
// You can set base path to assets
'basePath' => 'application.components.imperavi.my_plugin',
// or url, basePath will be ignored.
// Defaults is url to plugis dir from assets
'baseUrl' => '/js/my_plugin',
'css' => array('clips.css',),
'js' => array('clips.js',),
// add depends packages
'depends' => array('imperavi-redactor',),
),
),
));
imperavi-redactor-widget's People
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
๐ Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. ๐๐๐
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google โค๏ธ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.