EPastebin ¶
- Version: 0.2
 - Author: Dimitrios Meggidis
 
Description ¶
Render a pastebin.com submit form to your view.
Requirements ¶
First of all, you must register to Pastebin.com to get a developer key.
Implement ¶
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
        ),
    ));
TODO ¶
- better messages to be returned
 - create hide button on flash message
 - css of flash message to overlay the other divs.
 
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.