| 1 | <?php |
||
| 17 | class UrlHelper extends \craft\helpers\UrlHelper |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param string $path |
||
| 21 | * @param null $params |
||
| 22 | * @param string|null $protocol |
||
| 23 | * @return string |
||
| 24 | * @throws \yii\base\Exception |
||
| 25 | */ |
||
| 26 | public static function siteActionUrl(string $path = '', $params = null, string $protocol = null): string |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $path |
||
| 35 | * @param null $params |
||
| 36 | * @param string|null $protocol |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public static function cpActionUrl(string $path = '', $params = null, string $protocol = null): string |
||
| 45 | } |
||
| 46 |