### 生成 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'])`