Server IP : 103.233.192.212 / Your IP : 3.137.184.32 Web Server : Apache/2 System : Linux sv1.inde.co.th 3.10.0-1160.36.2.el7.x86_64 #1 SMP Wed Jul 21 11:57:15 UTC 2021 x86_64 User : sumpatuan ( 1058) PHP Version : 5.5.38 Disable Function : symlink,shell_exec,exec,proc_close,proc_open,popen,system,dl,putenv,passthru,escapeshellarg,escapeshellcmd,pcntl_exec,proc_get_status,proc_nice,proc_terminate,pclose,ini_alter,virtual,openlog,ini_restore MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sumpatuan/public_html/backup/protected/extensions/eckeditor/ |
Upload File : |
<?php /* * * Description of ECKEditor * * @author Matt Saragusa <polyhedron@gmail.com> * * v 0.1 * * /brief A class than can be used to create ckeditor instances in Yii * * sample useage * * $this->widget('application.extensions.eckeditor.ECKEditor', array( * 'model'=>$model, * 'column'=>'content', * 'language'=>'en', * 'toolbar'=>'full', * )); */ require_once 'ECKEdit5.php'; class ECKEditor extends CInputWidget{ private $ECKE; private $_config = array(); public function init() { parent::init(); $this->ECKE = new ECKEdit5; } // Takes in configuration data from widget declaration and overrides any default settings public function setConfig($value){ if(is_array($value) && count($value) > 0){ foreach($value as $key => $value){ $this->_config[$key] = $value; } } } public function run() { parent::run(); // Saves $id will be the id of the element that ckeditor will target list($name, $id) = $this->resolveNameID(); // Publish assets to public directory $baseDir = dirname(__FILE__); $assets = Yii::app()->getAssetManager()->publish($baseDir.DIRECTORY_SEPARATOR.'assets'); $cs = Yii::app()->getClientScript(); $cs->registerScriptFile($assets.'/ckeditor.js'); echo CHtml::activeTextArea($this->model, $this->attribute ,array('rows'=>10, 'cols'=>70)); $this->ECKE->replace($id, $this->_config); } } ?>