mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 10:25:35 +08:00
24 lines
499 B
PHP
24 lines
499 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class eccommon_task
|
||
{
|
||
|
||
/**
|
||
* post_install
|
||
* @return mixed 返回值
|
||
*/
|
||
public function post_install()
|
||
{
|
||
kernel::log('Initial eccommon');
|
||
kernel::single('base_initial', 'eccommon')->init();
|
||
|
||
kernel::log('Initial Regions');
|
||
kernel::single('eccommon_regions_mainland')->install();
|
||
}//End Function
|
||
}//End Class
|