コード例 #1
0
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new FileFormat();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['FileFormat'])) {
         $model->attributes = $_POST['FileFormat'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }
コード例 #2
0
 private function getFileFormat($format)
 {
     $file_format = FileFormat::model()->find("name=?", array($format));
     if ($file_format == null) {
         $file_format = new FileFormat();
         $file_format->name = $format;
         $file_format->description = " ";
         $file_format->save(false);
     }
     return $file_format->id;
 }