├── Module.php ├── README.md ├── UsersAsset.php ├── assets ├── img │ ├── female.png │ └── male.png └── js │ └── users.js ├── components ├── AuthChoice.php ├── AuthKeysManager.php ├── AuthorizationWidget.php ├── PermissionsTreeWidget.php ├── oauth │ ├── Facebook.php │ ├── GitHub.php │ ├── Google.php │ ├── LinkedIn.php │ ├── Live.php │ ├── Twitter.php │ ├── VKontakte.php │ └── Yandex.php └── views │ ├── _branch.php │ ├── authorizationWidget.php │ └── permissionsTreeWidget.php ├── composer.json ├── controllers ├── AdminController.php ├── AuthController.php ├── RbacController.php └── UserController.php ├── mail ├── confirmChangeEmail-html.php ├── confirmChangeEmail-text.php ├── confirmNewEmail-html.php ├── confirmNewEmail-text.php ├── passwordResetToken-html.php └── passwordResetToken-text.php ├── messages ├── config.php ├── en │ └── users.php └── ru │ └── users.php ├── migrations └── m130524_201442_init.php ├── models ├── AuthAssignment.php ├── AuthItem.php ├── AuthItemChild.php ├── AuthItemSearch.php ├── AuthRule.php ├── AuthRuleSearch.php ├── User.php ├── UserEmailConfirmToken.php ├── UserOauthKey.php ├── UserPasswordResetToken.php └── forms │ ├── AssignmentForm.php │ ├── ChangeEmailForm.php │ ├── ChangePasswordForm.php │ ├── LoginForm.php │ ├── PasswordResetRequestForm.php │ ├── ResetPasswordForm.php │ ├── RetryConfirmEmailForm.php │ └── SignupForm.php ├── rbac └── NoElderRankRule.php └── views ├── admin ├── _form.php ├── create.php ├── index.php ├── permissions.php ├── update.php └── view.php ├── rbac ├── _formAuthItem.php ├── _formAuthRule.php ├── children.php ├── create.php ├── index.php └── update.php └── user ├── login.php ├── profile.php ├── requestPasswordResetToken.php ├── resetPassword.php ├── retryConfirmEmail.php └── signup.php /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/README.md -------------------------------------------------------------------------------- /UsersAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/UsersAsset.php -------------------------------------------------------------------------------- /assets/img/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/assets/img/female.png -------------------------------------------------------------------------------- /assets/img/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/assets/img/male.png -------------------------------------------------------------------------------- /assets/js/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/assets/js/users.js -------------------------------------------------------------------------------- /components/AuthChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/AuthChoice.php -------------------------------------------------------------------------------- /components/AuthKeysManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/AuthKeysManager.php -------------------------------------------------------------------------------- /components/AuthorizationWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/AuthorizationWidget.php -------------------------------------------------------------------------------- /components/PermissionsTreeWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/PermissionsTreeWidget.php -------------------------------------------------------------------------------- /components/oauth/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/Facebook.php -------------------------------------------------------------------------------- /components/oauth/GitHub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/GitHub.php -------------------------------------------------------------------------------- /components/oauth/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/Google.php -------------------------------------------------------------------------------- /components/oauth/LinkedIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/LinkedIn.php -------------------------------------------------------------------------------- /components/oauth/Live.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/Live.php -------------------------------------------------------------------------------- /components/oauth/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/Twitter.php -------------------------------------------------------------------------------- /components/oauth/VKontakte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/VKontakte.php -------------------------------------------------------------------------------- /components/oauth/Yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/oauth/Yandex.php -------------------------------------------------------------------------------- /components/views/_branch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/views/_branch.php -------------------------------------------------------------------------------- /components/views/authorizationWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/views/authorizationWidget.php -------------------------------------------------------------------------------- /components/views/permissionsTreeWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/components/views/permissionsTreeWidget.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/controllers/AdminController.php -------------------------------------------------------------------------------- /controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/controllers/AuthController.php -------------------------------------------------------------------------------- /controllers/RbacController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/controllers/RbacController.php -------------------------------------------------------------------------------- /controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/controllers/UserController.php -------------------------------------------------------------------------------- /mail/confirmChangeEmail-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/mail/confirmChangeEmail-html.php -------------------------------------------------------------------------------- /mail/confirmChangeEmail-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/mail/confirmChangeEmail-text.php -------------------------------------------------------------------------------- /mail/confirmNewEmail-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/mail/confirmNewEmail-html.php -------------------------------------------------------------------------------- /mail/confirmNewEmail-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/mail/confirmNewEmail-text.php -------------------------------------------------------------------------------- /mail/passwordResetToken-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/mail/passwordResetToken-html.php -------------------------------------------------------------------------------- /mail/passwordResetToken-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/mail/passwordResetToken-text.php -------------------------------------------------------------------------------- /messages/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/messages/config.php -------------------------------------------------------------------------------- /messages/en/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/messages/en/users.php -------------------------------------------------------------------------------- /messages/ru/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/messages/ru/users.php -------------------------------------------------------------------------------- /migrations/m130524_201442_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/migrations/m130524_201442_init.php -------------------------------------------------------------------------------- /models/AuthAssignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/AuthAssignment.php -------------------------------------------------------------------------------- /models/AuthItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/AuthItem.php -------------------------------------------------------------------------------- /models/AuthItemChild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/AuthItemChild.php -------------------------------------------------------------------------------- /models/AuthItemSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/AuthItemSearch.php -------------------------------------------------------------------------------- /models/AuthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/AuthRule.php -------------------------------------------------------------------------------- /models/AuthRuleSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/AuthRuleSearch.php -------------------------------------------------------------------------------- /models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/User.php -------------------------------------------------------------------------------- /models/UserEmailConfirmToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/UserEmailConfirmToken.php -------------------------------------------------------------------------------- /models/UserOauthKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/UserOauthKey.php -------------------------------------------------------------------------------- /models/UserPasswordResetToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/UserPasswordResetToken.php -------------------------------------------------------------------------------- /models/forms/AssignmentForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/AssignmentForm.php -------------------------------------------------------------------------------- /models/forms/ChangeEmailForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/ChangeEmailForm.php -------------------------------------------------------------------------------- /models/forms/ChangePasswordForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/ChangePasswordForm.php -------------------------------------------------------------------------------- /models/forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/LoginForm.php -------------------------------------------------------------------------------- /models/forms/PasswordResetRequestForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/PasswordResetRequestForm.php -------------------------------------------------------------------------------- /models/forms/ResetPasswordForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/ResetPasswordForm.php -------------------------------------------------------------------------------- /models/forms/RetryConfirmEmailForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/RetryConfirmEmailForm.php -------------------------------------------------------------------------------- /models/forms/SignupForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/models/forms/SignupForm.php -------------------------------------------------------------------------------- /rbac/NoElderRankRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/rbac/NoElderRankRule.php -------------------------------------------------------------------------------- /views/admin/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/admin/_form.php -------------------------------------------------------------------------------- /views/admin/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/admin/create.php -------------------------------------------------------------------------------- /views/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/admin/index.php -------------------------------------------------------------------------------- /views/admin/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/admin/permissions.php -------------------------------------------------------------------------------- /views/admin/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/admin/update.php -------------------------------------------------------------------------------- /views/admin/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/admin/view.php -------------------------------------------------------------------------------- /views/rbac/_formAuthItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/rbac/_formAuthItem.php -------------------------------------------------------------------------------- /views/rbac/_formAuthRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/rbac/_formAuthRule.php -------------------------------------------------------------------------------- /views/rbac/children.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/rbac/children.php -------------------------------------------------------------------------------- /views/rbac/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/rbac/create.php -------------------------------------------------------------------------------- /views/rbac/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/rbac/index.php -------------------------------------------------------------------------------- /views/rbac/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/rbac/update.php -------------------------------------------------------------------------------- /views/user/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/user/login.php -------------------------------------------------------------------------------- /views/user/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/user/profile.php -------------------------------------------------------------------------------- /views/user/requestPasswordResetToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/user/requestPasswordResetToken.php -------------------------------------------------------------------------------- /views/user/resetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/user/resetPassword.php -------------------------------------------------------------------------------- /views/user/retryConfirmEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/user/retryConfirmEmail.php -------------------------------------------------------------------------------- /views/user/signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krivochenko/yii2-users/HEAD/views/user/signup.php --------------------------------------------------------------------------------