'yilianyun', // 插件标识 'title' => '易联云打印', // 插件名称 'description' => '热敏小票云打印', // 插件简介 'status' => 0, // 状态 'author' => 'hemaPHP',//作者 'version' => '1.0.1',//版本 ]; /** * 插件安装方法 * @return bool */ public function install() { return true; } /** * 插件卸载方法 * @return bool */ public function uninstall() { return true; } /** * 插件升级方法 * @return bool */ public function upgrade() { return true; } /** * 插件启用方法 * @return bool */ public function enable() { return true; } /** * 插件禁用方法 * @return bool */ public function disable() { return true; } }