Yii2-basic-template is based on yii2-app-basic created by yii2 core developers. There are several upgrades made to this template.
- This template comes with almost all features that default yii2-app-advanced has.
- It has additional features listed in the next section of this guide.
- Application structure has been changed to be 'shared hosting friendly'.
- Signup with/without account activation
- You can chose whether or not new users need to activate their account using email account activation system before they can log in.
- Login using email/password or username/password combo.
- You can chose how users will login into system. They can log in either by using their username|password combo or email|password.
- Rbac tables are installed with other migrations when you run
yii migrate
command.- RbacController's init() action will insert 5 roles and 2 permissions in our rbac tables created by migration.
- Roles can be easily assigned to users by administrators of the site.
- Nice example of how to use rbac in your code is given in this application. See: AppController.
- Users with editor+ roles can create articles.
- Session data is stored in _protected/session folder ( changes from v2 ).
- System setting are stored in config/params.php file ( changes from v2 ).
- Theming is supported out of the box.
- Translation is supported out of the box.
- Administrators and The Creator can manage users ( changes from v2 ).
- Password strength validation and strength meter.
- Code is heavily commented out.
I am assuming that you know how to: install and use Composer, and install additional packages/drivers that may be needed for you to run everything on your system. In case you are new to all of this, you can check my guides for installing default yii2 application templates, provided by yii2 developers, on Windows 8 and Ubuntu based Linux operating systems, posted on www.freetuts.org.
-
Create database that you are going to use for your application (you can use phpMyAdmin or any other tool you like).
-
Now open up your console and
cd
to your web root directory, for example:cd /var/www/sites/
-
Run the Composer
create-project
command:composer create-project nenad/yii2-basic-template basic
-
Now you need to tell your application to use database that you have previously created. Open up db.php config file in
basic/_protected/config/db.php
and adjust your connection credentials. -
Back to the console. Inside your newly installed application,
cd
to the_protected
folder. -
Execute yii migration command that will install necessary database tables:
./yii migrate
or if you are on Windowsyii migrate
-
Execute rbac controller init action that will populate our rbac tables with default roles and permissions:
./yii rbac/init
or if you are on Windowsyii rbac/init
You are done, you can start your application in your browser.
Note: First user that signs up will get 'theCreator' (super admin) role. This is supposed to be you. This role have all possible super powers :-) . Every other user that signs up after the first one will get 'member' role. Member is just normal authenticated user.
If you want to run tests you should create additional database that will be used to store your testing data. Usually testing database will have the same structure like the production one. I am assuming that you have Codeception installed globally, and that you know how to use it. Here is how you can set up everything easily:
-
Let's say that you have created database called
basic
. Go create the testing one calledbasic_tests
. -
Inside your
db.php
config file change database you are going to use tobasic_tests
. -
Open up your console and
cd
to the_protected
folder of your application. -
Run the migrations again:
./yii migrate
or if you are on Windowsyii migrate
-
Run rbac/init again:
./yii rbac/init
or if you are on Windowsyii rbac/init
-
Now you can tell your application to use your
basic
database again instead ofbasic_tests
. Adjust yourdb.php
config file again. -
Now you are ready to tell Codeception to use
basic_tests
database.Inside:
_protected/tests/codeception/config/config.php
file tell yourdb
to usebasic_tests
database. -
Start your php server inside the root of your application:
php -S localhost:8080
(if the name of your application is basic, then root isbasic
folder) -
Move to
_protected/tests
, runcodecept build
and then run your tests.
_protected
assets/ contains assets definition
config/ contains application configurations
console contains console commands (controllers and migrations)
controllers/ contains Web controller classes
helpers/ contains helper classes
mail/ contains view files for e-mails
models/ contains model classes
rbac/ contains role based access control classes
runtime/ contains files generated during runtime
tests/ contains various tests for the basic application
translations/ contains application translations
views/ contains view files for the Web application
widgets/ contains widgets
assets contains application assets generated during runtime
themes contains your themes
- option to CRUD articles ( posts ) has been added
- translation support has been included and Serbian translation has been added
- themes has been improved
- new roles, permissions and rules are added
- other code refactoring has been done
- settings are stored in config/params.php configuration file to reduce database load
- session is stored in files located in runtime/session folder
- account update is merged with user management and user management is more powerful now
- User model has been separated on UserIdentity and User (for easier understanding and use)
- 4 beautiful bootstrap responsive themes are included out of the box
- comment style is changed according to yii2 official style
- tests has been rewritten according to the changes that has been made
- a lot of other polishing has been done
Since 1.1.1 version has been released, password strength extension has been included as a core part of improved templates. Usage is very simple:
In our signup, user create/update and password reset forms password strength meter is always displayed when users are entering their password. This will give them visual representation of their password strength.
But this is not all. As The Creator you have option in your settings "Force Strong Password" that you can use. If you turn it on, users will be forced to use strong passwords according to preset you chose. For example if you use normal preset, users will be forced to use at least 8 characters long password, with at least one upper-case and one lower-case letter, plus at least one digit.
Since version 2 settings are stored in config/params.php file!
Choosing presets:
By default normal preset is used for signup and user create/update forms. For password reset we are using 'reset' preset if you want to customize which presets is used, see SignupForm model, User model and ResetPasswordForm model. You will see rules declared for using strong passwords. Presets are located in vendor/nenad/yii2-password-strength/presets.php
. You can chose some other preset declared in presets.php, or create new ones.