예제 #1
0
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new Banner();
     $path = Yii::app()->basePath . '/../uploads/banners';
     if (!is_dir($path)) {
         mkdir($path);
     }
     if (isset($_POST['Banner'])) {
         $model->attributes = $_POST['Banner'];
         if ($model->validate()) {
             $model->created_on = new CDbExpression('NOW()');
             $model->created_by = Yii::app()->user->id;
             if (empty($model->alias)) {
                 $model->alias = str_replace(' ', '-', strtolower($model->name));
             } else {
                 $model->alias = str_replace(' ', '-', strtolower($model->alias));
             }
             //Picture upload script
             if (@(!empty($_FILES['Banner']['name']['banner']))) {
                 $model->banner = $_POST['Banner']['banner'];
                 if ($model->validate(array('banner'))) {
                     $model->banner = CUploadedFile::getInstance($model, 'banner');
                 } else {
                     $model->banner = '';
                 }
                 $model->banner->saveAs($path . '/' . time() . '_' . str_replace(' ', '_', strtolower($model->banner)));
                 $model->banner = time() . '_' . str_replace(' ', '_', strtolower($model->banner));
             }
             if ($model->save()) {
                 Yii::app()->user->setFlash('success', 'Saved successfully');
                 $this->redirect(array('view', 'id' => $model->id));
             }
         }
     }
     $this->render('create', array('model' => $model));
 }