### 生成 URL 方法
| 方法名称 | 描述 |
| --- | --- |
| PluginsHomeUrl | 前端 URL 生成方法 |
| PluginsAdminUrl | 后端 URL 生成方法 |
### 生成 URL 参数
| 参数名称 | 描述 |
| --- | --- |
| $plugins_name | 应用唯一标记名称 |
| $plugins_control | 应用控制器 |
| $plugins_action | 应用方法 |
| $params | 参数(一维数组) |
### 实例
1. 生成优惠券前端首页 `PluginsHomeUrl('coupon', 'index', 'index')`
2. 生成优惠券后端首页 `PluginsAdminUrl('coupon', 'index', 'index', ['test'=>'hello'])`