Advertisement
Guest User

Yii file upload 1/3

a guest
Feb 15th, 2011
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement