| 1 | <?php namespace Arcanesoft\Core\Helpers\UI\LinkTraits; |
||
| 9 | trait RestoreLinks |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Generate restore icon link for modals. |
||
| 13 | * |
||
| 14 | * @param string $url |
||
| 15 | * @param array $attributes |
||
| 16 | * @param bool $disabled |
||
| 17 | * |
||
| 18 | * @return self |
||
| 19 | */ |
||
| 20 | 3 | public static function restoreModalIcon($url, array $attributes = [], $disabled = false) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * Generate restore link with icon for modals. |
||
| 29 | * |
||
| 30 | * @param string $url |
||
| 31 | * @param array $attributes |
||
| 32 | * @param bool $disabled |
||
| 33 | * |
||
| 34 | * @return self |
||
| 35 | */ |
||
| 36 | 3 | public static function restoreModalWithIcon($url, array $attributes = [], $disabled = false) |
|
| 43 | } |
||
| 44 |