openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

TextEditAction.class.php (277B)


      1 <?php
      2 namespace cms\action\text;
      3 use cms\action\Method;
      4 use cms\action\TextAction;
      5 
      6 
      7 class TextEditAction extends TextAction implements Method {
      8 
      9     public function view() {
     10 		$this->setTemplateVar( 'source',$this->text->loadValue() );
     11     }
     12 
     13 
     14 	public function post()
     15 	{
     16 	}
     17 }