审查视图

addons/address/Address.php 414 字节
王智 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<?php

namespace addons\address;

use think\Addons;

/**
 * 地址选择
 * @author [MiniLing] <[laozheyouxiang@163.com]>
 */
class Address extends Addons
{

    /**
     * 插件安装方法
     * @return bool
     */
    public function install()
    {
        return true;
    }

    /**
     * 插件卸载方法
     * @return bool
     */
    public function uninstall()
    {
        return true;
    }

}