karakum/yii2-region-reference 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

karakum/yii2-region-reference

Composer 安装命令:

composer require karakum/yii2-region-reference

包简介

This extension provides a region reference module

README 文档

README

This extension provide a region reference module(backend & frontend) with feature: backend:

  • Customizable regions structure(country-region-city...)
  • Mass region creation
  • Import/export whole country structure
  • Two backend module theme: default yii2 & AdminLTE
  • Auto generate region structure example data(while install migration), optional

frontend & backend:

  • Ajax controller for search regions. Applicable for Select2 field for select region.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist karakum/yii2-region-reference "*"

or add

"karakum/yii2-region-reference": "*"

to the require section of your composer.json file.

Configuration

In application config add:

    'modules' => [
    	...
        'regions' => [
            'class' => 'karakum\region\BackendModule',
        ],
    	...
    ],
    'components' => [
    	...
        'regionManager' => [
            'class' => 'karakum\region\RegionManager',
        ],
    	...
    ],

For frontend application you can use karakum\region\FrontendModule, it provide only ajax controller with unauthorized access. karakum\region\BackendModule already include ajax controller.

Default country. If you want to use only one country in your application, you can set country property in region manager(default is false) with country code. For example, if you set RU then it will change some behavior of manager's functions: function getRegionFullname will omit country name in output and ajax output will contain only regions in selected country and country record excluded.

Migrations

Before applying migration you can set exampleData property to true(by default it is false) for regionManager component for generate some example data. If you do that then migration will create:

  • region types. Default: COUNTRY, REGION, CITY. It depends on region manager property defaultTypes.
  • region levels. Default: Country, Region in Country, City in Region in Country, City in Country. It depends on region manager property defaultLevels.

Migration will create tables with default names {{%region}}, {{%region_level}}, {{%region_type}}. To change it use properties regionTypeTable, regionLevelTable, regionTable of region manager component.

To apply migration you can add @karakum/region/migrations to migrations lookup list(if you use extension like cyberz/yii2-multipath-migrations) or run:

$ yii migrate --migrationPath=@karakum/region/migrations

Theme select

Backend module provided with two predefined themes. By default it use standard Yii2 theme. If you prefer AdminLTE template and use extension dmstr/yii2-adminlte-asset, you can use predefined AdminLTE theme:

    'components' => [
	    ...
        'view' => [
            'theme' => [
                'pathMap' => [
                    '@karakum/region/views' => '@karakum/region/themes/adminlte/views',
                ],
            ],
        ],
	    ...
    ],

Both themes use module predefined layouts. To use your own layout just set layout to null in module config:

    'modules' => [
        'regions' => [
            'class' => 'karakum\region\BackendModule',
            'layout' => null,
        ],
    ],

Usage

Example of usage kartik-v Select2 for autocomplete selecting region

	<?= $form->field($model, 'region_id')->widget(\kartik\select2\Select2::className(), [
		'data' => $model->region ? [$model->region_id => $model->region->name] : [],
		'options' => ['placeholder' => 'Select region ...'],
		'pluginOptions' => [
			'allowClear' => false,
			'ajax' => [
				'url' => Url::to(['/regions/ajax']),
				'dataType' => 'json',
				'quietMillis' => 100,
				'data' => new JsExpression('function (term, page) {
					return {
						page_limit: 10,
						RegionSearch: { search: term.term, status: ' . \karakum\region\models\Region\Region::STATUS_ACTIVE . ' },
					};
				}'),
				'results' => new JsExpression('function (data, page) {
					return { results: data.results };
				}'),
			],
		],
	]) ?>

统计信息

  • 总下载量: 23
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-10-27

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固