Download the PHP package dlds/yii2-giixer without Composer
On this page you can find all versions of the php package dlds/yii2-giixer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package yii2-giixer
Yii2 Giixer
Extended gii module for Yii2 including a bunch of useful handler, helpers, traits and other components. This module generates required models, controllers and other classes with dependency on own components. Default yii-gii generator is not available when your are usint yii2-giiixer module.
Installation
The preferred way to install this extension is through composer.
Either run
or add
to the require
section of your composer.json
file.
Migration
There is not any migration required to run. Module itself does not store any data in DB.
Structure
Giixer defines its own easy to maintain and extendable application structure which is sligtly different from default (gii generated) structure. Below you can find what all and how giixer generates.
ActiveRecords
Giixer uses its own ActiveRecords (AR) strucutre. Below are all 4 ARs with descriptions about what they stand for. Each is placed on notional level as in application.
- Base AR
- Top level and not editable AR
- Maintained only by giixer itself.
- Always extends GxActiveRecord
- Manual changes are lost after next giixer generation
- File is placed in
common\models\db\base
orcommon\modules\modulename\models\db\base
- Common AR
- Extends Base AR
- Editable and maintained by developer
- Manual changes are not lost after any giixer generation
- File is placed in
common\models\db
orcommon\modules\modulename\models\db
- Only this model can be directly used by application
Structure schema is shown in this diagram
This AR model structure gives you opportunity to easily update your DB schema and still be able to regenerate your AR model without loosing your current code changes.
Some additional features stored in Base AR is shown in MyModel
ActiveQueries
Each AR model is generated with its custom ActiveQuery class which is assigned to Base AR.
Giixer creates following 3 ActiveQuery (AQ) classes during ARs generation.
- Common AQ
- Extends
\yii\db\ActiveQuery
- Editable and maintained by developer
- File is placed in
common\models\db\base
orcommon\modules\modulename\models\db\base
- Always loaded in Base AR (Only this can be directly used by application)
- Extends
Base AR will automatically loads appropriate AQ.
Structure schema is shown in this diagram
Giixer generates default AQ logic to be able to easily use appropriate AR model class in custom queries.
Default AQ logic is show in MyModelQuery
Helpers
Giixer defines bunch of useful helpers. Below you can see which helpers giixer offers.
URL Helpers
Own url route and rule helpers are generated for each AR model.
Giixer creates following 2 helpers (HLP) for both backend
and frontend
application.
- Route HLP
- Extends
\dlds\giixer\components\helpers\GxRouteHelper
or your custom class set inhelperRouteBaseClass
(see Configuration section) - Contains all default routes generated by giixer
- Directly used by application
- Frontend file is placed in
frontend\components\helpers\url\routes
orfrontend\modules\modulename\components\helpers\url\routes
- Backend file is placed in
backend\components\helpers\url\routes
orbackend\modules\modulename\components\helpers\url\routes
- Extends
- Rule HLP
- Extends
\dlds\giixer\components\helpers\GxUrlRuleHelper
or your custom class set inhelperRuleBaseClass
(see Configuration section) - Contains rules for all giixer generated routes
- Usually used in url rules configuration
- Frontend file is placed in
frontend\components\helpers\url\rules
orfrontend\modules\modulename\components\helpers\url\rules
- Backend file is placed in
backend\components\helpers\url\rules
orbackend\modules\modulename\components\helpers\url\rules
- Extends
Main idea of both helpers is to encapsulate rules/routes in single class and provide developer with easy interface for using it.
Basic route and rule helpers examples: MyBasicRouteHelper, MyBasicUrlRuleHelper
To be able to have translatable url slug defined in translation files (i18n) you have to load your rules in application bootstrap like bellow. Otherwise translation will not work. See Yii2 Adding Rules Dynamically
Where @frontend/config/url/rules.php
should look like below.
Than in application config you just set your AppBootstrapHandler to be processed.
TIP: Usually you want to have better looking urls without model primary key shown in it. For instance you have own CMS system
where each of your Post
model has its own slug looks like my-custom-post-title
and you want to have final url be
like http://www.mydomain.com/my-custom-post-title/
. For this case you have to update your UrlRuleHelper class according to MyAdvancedRuleHelper
Model Helper
This helper defines methods used in GxActiveRecord class. There are methods for adapting query params to pass mass assignemnt, methods to easily change validation rules or scenario definitions.
For more information see GxModelHelper
Other Helpers
Giixer defines a few another helper class which is more or less complex and useful in basic manipulation with application. Each helper has it own well-documented class.
For more information see Giixer Helpers
Handlers
Giixer defines two main handler class useful for controllers to keep its methods lean and well-arranged.
- GxCrudHandler
- Defines its own approach of Create, Read, Update, Delete methods
- Invokes GxCrudEvent during each action which holds all data about action result
- Usually used for manipulationg standart AR model classes and their appropriate DB entries
- GxHandler
- Defines its own approach to validate model and based on validation result processes appropriate callback
- Usually used for non AR models manipulation when save() means creating multiple ARs etc...
For more information see Giixer Handlers
Configuration
Enable gii module in your config file by adding it to app bootstrap.
Replace default gii module class with giixer one.
You can also modify giixer module behavior to your requirements by setting additional config options. See bellow.
namespaces
option
Defines namespaces map to generated classes. This is useful if the namespace for some class does not match the default one. For instance if your application is divided into modules and you need to generate classes for these modules.
In example above we can see our application contains modules and also some direct laying "Core" files.
You can see that we defined also rule for views to be able to place generated view files to appropriate folder.
There are some special tags you can use when you specifying your rules.
Special tags
- {Module} - will be replaced with current module name
- {Modules} - will be replaced with all modules names regex
- {module} - will be replaced with current module id
- {modules} - will be replaced with all modules ids regex
To be able to use these special tags you have to specify your modules names and ids.
Array index is used for modules IDs. Array values for modules Names.
During generation Giixer will automatically replace these tags so final rules look like bellow (we are generating some Edu model).
bases
option
Defines base classes for specific components, controllers and other application classes. It is based on regex of descendant class and fully qualified name of base class.
Above you can see configuration for modules controllers which have custom base classes.
If custom controller (frontend or backend) base class is specified it must extends GxController. Otherwise the GxController will be used directly as parent class. (GxController extends default
\yii\web\Controller
).If custom route helper base class is set it must extends GxRouteHelper. Otherwise the GxRouteHelper will be used directly as parent class.
If custom route helper base class is set it must extends GxUrlRuleHelper. Otherwise the GxUrlRuleHelper will be used directly as parent class.
translations
option
Defines which translations files should be automatically generated. This option is defined by array containing languages codes.
For above the english, german and czech translations files will be generated.
messages
option
Defines custom translations categories.
For above generator use category 'edu/dynagrid' instead of 'dynagrid' everywhere in class which match regex '^Edu[a-zA-Z]+$'.
For more information see Giixer Module main class
Copyright 2016 © Digital Deals s.r.o.
All versions of yii2-giixer with dependencies
yiisoft/yii2-gii Version ~2.0.0
dlds/yii2-metronic Version ~2.0.0
dlds/yii2-rels Version ~0.8.0
kartik-v/yii2-dynagrid Version ~1.4.0