3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * This is the model class for table "fileinn". * * The followings are the available columns in table 'fileinn': * @property integer $id * @property string $fileinn * * The followings are the available model relations: * @property Org[] $orgs */ class FileInn extends NTYActiveRecord { /** * Returns the static model of the specified AR class. * @param string $className active record class name. * @return FileInn the static model class */ public static function model($className = __CLASS__) { return parent::model($className); } /** * @return string the associated database table name */ public function tableName() { return 'file_inn'; } /** * @return array validation rules for model attributes. */ public function rules() { // NOTE: you should only define rules for those attributes that // will receive user inputs. return array( array('fileinn', 'required'), array('fileinn', 'file', 'allowEmpty' => false, 'safe' => true, 'types' => Yii::App()->params->TypesUpload, 'maxSize' => Yii::App()->params->SizeUpload), //array('fileinn', 'file', 'mimeTypes' => Yii::App()->params->mimeTypesUpload, 'maxSize' => 1048576), // The following rule is used by search(). // Please remove those attributes that should not be searched. array('id, fileinn', 'safe', 'on' => 'search'), ); } /** * @return array relational rules. */ public function relations() { // NOTE: you may need to adjust the relation name and the related // class name for the relations automatically generated below. return array( 'orgs' => array(self::HAS_MANY, 'Org', 'id_file_inn'), ); } /** * @return array customized attribute labels (name=>label) */ public function attributeLabels() { return array( 'id' => 'ID', 'fileinn' => 'Скан-копия ИНН', ); } /** * Retrieves a list of models based on the current search/filter conditions. * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. */ public function search() { // Warning: Please modify the following code to remove attributes that // should not be searched. $criteria = new CDbCriteria; $criteria->compare('id', $this->id); $criteria->compare('fileinn', $this->fileinn, true); return new CActiveDataProvider($this, array( 'criteria' => $criteria, )); } public function beforeSave() { if ($file = CUploadedFile::getInstance($this, 'fileinn')) { //$this->file_name = $file->name; //$this->file_type = $file->type; //$this->file_size = $file->size; $this->fileinn = file_get_contents($file->tempName); } return parent::beforeSave(); } }

preferences:
43.39 ms | 402 KiB | 5 Q