document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class Item extends CActiveRecord
  2. {
  3.     public $image;
  4.     // ... other attributes
  5.  
  6.     public function rules()
  7.     {
  8.         return array(
  9.             array(\'image\', \'file\', \'types\'=>\'jpg, gif, png\'),
  10.         );
  11.     }
  12. }
');