Render a pastebin.com submit form to your view.
First of all, you must register to Pastebin.com to get a developer key.
Add extension to the config file (config/main.php):
'imports'=>array( ... 'application.extensions.EPastebin.*' ...
In controller add:
public function actions() { return array( .... 'epastebin'=>array( 'class'=>'CPastebinAction' ), .... ); }
In view add:
Minimal options:
$this->widget('EPastebin', array( "loginKey"=>"Your developer key from pastebin.com"));
All available options:
$this->widget('EPastebin', array( "loginKey"=>"Your developer key from pastebin.com", // The view that contains the form under extension/EPastebin/views/ "form"=>"_form", "default"=>array( "format"=>"php", //Default for format selection "expire"=>"10M" //Default for expire seltion ), ));
Be the first person to leave a comment
Please login to leave your comment.