class-button.php
1 year ago
class-insert-button.php
1 year ago
class-premium-button.php
1 year ago
class-preview-button.php
1 year ago
class-preview-button.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SuperbAddons\Components\Buttons; |
| 4 | |
| 5 | defined('ABSPATH') || exit(); |
| 6 | |
| 7 | use SuperbAddons\Components\Buttons\Button; |
| 8 | use SuperbAddons\Components\Buttons\ButtonIcon; |
| 9 | use SuperbAddons\Components\Buttons\ButtonType; |
| 10 | |
| 11 | class PreviewButton |
| 12 | { |
| 13 | public function __construct($preview_text = false, $target = false) |
| 14 | { |
| 15 | new Button( |
| 16 | ButtonType::Secondary, |
| 17 | ButtonIcon::Preview, |
| 18 | array( |
| 19 | 'class' => 'superb-addons-template-library-template-item-preview-btn superbaddons-element-button', |
| 20 | 'text' => $preview_text, |
| 21 | 'target' => $target |
| 22 | ) |
| 23 | ); |
| 24 | } |
| 25 | } |
| 26 |