clh021 / yii2-wechat_ionic1
Yii2 wechat base on ionic1 for other application
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- php: >=5.5.9
- overtrue/wechat: >=3.0.7
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-03-27 13:32:40 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist clh021/yii2-wechat_ionic1 "*"
or add
"clh021/yii2-wechat_ionic1": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
Migration
Migration run
php yii migrate --migrationPath=@clh021/wechat_ionic1/migrations
Config url rewrite in /common/config/main.php
'timeZone' => 'Asia/Shanghai', //time zone affect the formatter datetime format 'components' => [ 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ '<controller:\w+>/<id:\d+>' => '<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>', '<controller:\w+>/<action:\w+>' => '<controller>/<action>', ], ], 'formatter' => [ //for the showing of date datetime 'dateFormat' => 'yyyy-MM-dd', 'datetimeFormat' => 'yyyy-MM-dd HH:mm:ss', 'decimalSeparator' => ',', 'thousandSeparator' => ' ', 'currencyCode' => 'CNY', ], ],
Config backend modules in backend/config/main.php
'modules' => [ 'cms' => [ 'class' => 'clh021\wechat_ionic1\Module', 'controllerNamespace' => 'clh021\wechat_ionic1\controllers\backend' ], ],
Config frontend modules in frontend/config/main.php
'defaultRoute' => 'wechat', //set wechat as default route 'modules' => [ 'wechat' => [ 'class' => 'clh021\wechat_ionic1\Module', 'controllerNamespace' => 'clh021\wechat_ionic1\controllers\frontend' ], ],
Add yii2-cms params in /frontend/config/params.php.
return [ 'cmsTitle' => 'HikeCms', 'cmsTitleSeo' => 'Simple Cms based on Yii2', 'cmsFooter' => 'Copyright © ' . date('Y') . ' by clh021 chen on Yii2. All Rights Reserved.', 'cmsPostPageCount' => '2', 'cmsLinks' => [ 'Google' => 'http://www.google.com', '' => 'http://github.com/clh021/yii2-wechat_ionic1', ], ];