Geo module with countries and cities
- PHP 5.6 or higher
- Yii2 v.2.0.33 and newest
- Yii2 Base module (required)
To install the module, run the following command in the console:
$ composer require "wdmg/yii2-geo"
After configure db connection, run the following command in the console:
$ php yii geo/init
And select the operation you want to perform:
- Apply all module migrations
- Revert all module migrations
- Batch insert demo data*
In any case, you can execute the migration and create the initial data, run the following command in the console:
$ php yii migrate --migrationPath=@vendor/wdmg/yii2-geo/migrations
To add a module to the project, add the following data in your configuration file:
'modules' => [
...
'geo' => [
'class' => 'wdmg\geo\Module',
'routePrefix' => 'admin'
],
...
],
Use the Module::dashboardNavItems()
method of the module to generate a navigation items list for NavBar, like this:
<?php
echo Nav::widget([
'options' => ['class' => 'navbar-nav navbar-right'],
'label' => 'Modules',
'items' => [
Yii::$app->getModule('geo')->dashboardNavItems(),
...
]
]);
?>
- v.1.2.0 - Update copyrights, fix menu dashboard
- v.1.1.8 - Up to date dependencies
- v.1.1.7 - Fixed deprecated class declaration
* - The demo database contains 144 countries, 111 regions and 4923 cities of such countries as: Russia, Ukraine, Kazakhstan, Azerbaijan, Belarus, Moldova, Poland, South Ossetia, Georgia, Kyrgyzstan, Uzbekistan and contains a total of 20863 translations in EN, UK (Ukrainian), PL, DE. Sources of demo data of countries, cities and regions are initially presented in Russian.