Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto populate translation attributes #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Aug 14, 2015

  1. Auto populate translation attributes

    With this changes will automatically populate translation attributes
    
    Now we can use default CRUD controllers actions without any changes:
    
    	public actionCreate()
    	{
    		$model = new Post();
                     if ($model->load(Yii::$app->request->post()) && $model->save()) 
    		{
                         return $this->redirect(['view', 
    				'id' => $model->id
    			]);
                   } else {
                         return $this->render('create', [
                                   'model' => $model,
                        ]);
                   }
    	}
    	
    	
    	public function actionUpdate($id)
            {
                   $model = $this->findModel($id);
                   if ($model->load(Yii::$app->request->post()) && $model->save())
                   {
                         return $this->redirect(['view', 
    				'id' => $model->id
    			]);
                   } else {
                          return $this->render('update', [
                                     'model' => $model,
                          ]);
                   }
        }
    ustmaestro committed Aug 14, 2015
    Configuration menu
    Copy the full SHA
    5efd1da View commit details
    Browse the repository at this point in the history
  2. Update addTranslations

    ustmaestro committed Aug 14, 2015
    Configuration menu
    Copy the full SHA
    eaf1e78 View commit details
    Browse the repository at this point in the history