/var/www/vhosts/nabawater/vendor/dektrium/yii2-user/commands
Edit: /var/www/vhosts/nabawater/vendor/dektrium/yii2-user/commands/CreateController.php (1800B)
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace dektrium\user\commands;
use dektrium\user\models\User;
use Yii;
use yii\console\Controller;
use yii\helpers\Console;
/**
* Creates new user account.
*
* @property \dektrium\user\Module $module
*
* @author Dmitry Erofeev
*/
class CreateController extends Controller
{
/**
* This command creates new user account. If password is not set, this command will generate new 8-char password.
* After saving user to database, this command uses mailer component to send credentials (username and password) to
* user via email.
*
* @param string $email Email address
* @param string $username Username
* @param null|string $password Password (if null it will be generated automatically)
*/
public function actionIndex($email, $username, $password = null)
{
$user = Yii::createObject([
'class' => User::className(),
'scenario' => 'create',
'email' => $email,
'username' => $username,
'password' => $password,
]);
if ($user->create()) {
$this->stdout(Yii::t('user', 'User has been created') . "!\n", Console::FG_GREEN);
} else {
$this->stdout(Yii::t('user', 'Please fix following errors:') . "\n", Console::FG_RED);
foreach ($user->errors as $errors) {
foreach ($errors as $error) {
$this->stdout(' - ' . $error . "\n", Console::FG_RED);
}
}
}
}
}