Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Controller_Editor extends Controller_Template
- {
- public $template = 'editor';
- function before()
- {
- parent::before();
- $this->template->editor = '';
- }
- function after()
- {
- parent::after();
- }
- public function action_index() {
- $this->template->editor = Ckeditor::instance();
- }
- public function action_text() {
- //$this->template->result = $_POST[ 'name' ];
- }
- }
- -----------------------------
Advertisement
Add Comment
Please, Sign In to add comment