for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* _ __ __ _____ _____ ___ ____ _____
* | | / // // ___//_ _// || __||_ _|
* | |/ // /(__ ) / / / /| || | | |
* |___//_//____/ /_/ /_/ |_||_| |_|
* @link https://vistart.me/
* @copyright Copyright (c) 2016 - 2017 vistart
* @license https://vistart.me/license/
*/
namespace rhosocial\user\widgets;
use rhosocial\user\Profile;
use yii\base\Widget;
* @version 1.0
* @author vistart <[email protected]>
class ProfileFormWidget extends Widget
{
* @var Profile
public $model;
public function init()
if (is_null($this->model) || !($this->model instanceof Profile)) {
$this->model = Yii::$app->user->identity->createProfile(['scenario' => Profile::SCENARIO_UPDATE]);
}
public function run()
return $this->render('profile-form-widget', ['model' => $this->model]);