document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. //in the protected/components/mywidget
  3. class MyWidget extends CWidget{
  4.     public function init(){
  5.         //do initializing...
  6.     }
  7.     public function run(){
  8.         //render or echoing something...
  9.     }
  10. }
  11. ?>
  12.  
  13. //in the view.php
  14. ...
  15. <?php $this->widget(\'application.components.mywidget.MyWidget\'); ?>
  16. ...
');