/**
  * Creates a new Tuitionfees model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Tuitionfees();
     if ($model->load(Yii::$app->request->post())) {
         $model->save();
         return $this->redirect(['view', 'id' => $model->tuitionfee_id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
    /**
     * Creates a new Tuitionfees model.
     * If creation is successful, the browser will be redirected to the 'view' page.
     * @return mixed
     */
    public function actionCreate()
    {
        $model = new Tuitionfees();
        if ($model->load(Yii::$app->request->post())) {

			$fileName = $model->tuitionfee_scholar_id."regform";
			$model->file = UploadedFile::getInstance($model,'file');
			if($model->file != null)
			{
				$model->file->saveAs('RegForm/'.$fileName.'.'.$model->file->extension);	
				$model->tuitionfee_registrationForm = 'RegForm/'.$fileName.'.'.$model->file->extension;	
			}	
						
			$model->save();
            return $this->redirect(['view', 'id' => $model->tuitionfee_id]);
        } else {
            return $this->render('create', [
                'model' => $model,
            ]);
        }
    }
    /**
     * Creates a new Tuitionfees model.
     * If creation is successful, the browser will be redirected to the 'view' page.
     * @return mixed
     */
    public function actionCreate()
    {
		if(Yii::$app->user->can('create-tuitionfees'))
		{
			$model = new Tuitionfees();
			if ($model->load(Yii::$app->request->post())) 
			{
				$model->uploaded_by = Yii::$app->user->identity->username;
				$model->save();
				return $this->redirect(['view', 'id' => $model->tuitionfee_id]);
			} else {
				return $this->render('create', [
					'model' => $model,
				]);
			}
		}
		else
		{
			throw new ForbiddenHttpException;
		}
    }