class-css-blocks-base-slot.php
1 year ago
class-css-blocks-export-selected-slot.php
1 year ago
class-css-blocks-export-single-slot.php
1 year ago
class-css-blocks-target-slot.php
1 year ago
class-premium-option-wrapper.php
1 year ago
class-premium-slot.php
1 year ago
class-slot-render-utility.php
1 year ago
class-css-blocks-export-single-slot.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SuperbAddons\Components\Slots; |
| 4 | |
| 5 | defined('ABSPATH') || exit(); |
| 6 | |
| 7 | class CssBlocksExportSingleSlot extends PremiumSlot |
| 8 | { |
| 9 | protected static $RenderFill; |
| 10 | protected function RenderSlot() |
| 11 | { |
| 12 | new PremiumOptionWrapper( |
| 13 | function () { |
| 14 | ?> |
| 15 | <button class="superbaddons-element-button superbaddons-element-m0"> |
| 16 | <img class="superbaddons-element-button-icon" src="<?= esc_url(SUPERBADDONS_ASSETS_PATH . '/img/download-simple-duotone.svg'); ?>" /> |
| 17 | <?= esc_html__("Export CSS Block", "superb-blocks"); ?> |
| 18 | </button> |
| 19 | <?php |
| 20 | } |
| 21 | ); |
| 22 | } |
| 23 | } |
| 24 |