PluginProbe ʕ •ᴥ•ʔ
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More / 3.4.0
Superb Addons: Blocks, Patterns, Pre-built Pages, Sliders, Popups, Free Forms, Animations & More v3.4.0
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 trunk 1.0.0 2.0.0 2.0.1 2.0.2 2.0.3 3.0 3.0.1 3.0.2 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.2.0 3.2.1 3.2.2 3.2.4 3.2.5 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.4.0 3.4.1 3.4.2 3.4.5 3.4.6 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.6 3.5.7 3.5.8 3.5.9 3.6.0 3.6.1 3.6.2 3.7.0 3.7.1
superb-blocks / src / components / slots / class-css-blocks-target-slot.php
superb-blocks / src / components / slots Last commit date
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-target-slot.php
35 lines
1 <?php
2
3 namespace SuperbAddons\Components\Slots;
4
5 defined('ABSPATH') || exit();
6
7 use SuperbAddons\Components\Admin\InputCheckbox;
8
9 class CssBlocksTargetSlot extends PremiumSlot
10 {
11 protected static $RenderFill;
12 protected function RenderSlot()
13 {
14 new PremiumOptionWrapper(function () {
15 new InputCheckbox("superbaddons-css-block-target-input-blogpage", "blogpage-action", __("Blog page", "superb-blocks"), __("Applies CSS block to the blog page.", "superb-blocks"));
16 });
17
18 new PremiumOptionWrapper(function () {
19 new InputCheckbox("superbaddons-css-block-target-input-pages", "specific-page-action", __("Pages", "superb-blocks"), __("Applies CSS block to one or more selected pages. Applies to all pages if none is selected.", "superb-blocks"));
20 });
21
22 new PremiumOptionWrapper(function () {
23 new InputCheckbox("superbaddons-css-block-target-input-posts", "specific-post-action", __("Posts", "superb-blocks"), __("Applies CSS block to one or more selected posts. Applies to all posts if none is selected.", "superb-blocks"));
24 });
25
26 new PremiumOptionWrapper(function () {
27 new InputCheckbox("superbaddons-css-block-target-input-blogpage", "archive-action", __("Archives", "superb-blocks"), __("Applies CSS block to archive pages including category, tag, author, date, custom post type, and custom taxonomy based archives.", "superb-blocks"));
28 });
29
30 new PremiumOptionWrapper(function () {
31 new InputCheckbox("superbaddons-css-block-target-input-templates", "specific-template-action", __("Templates", "superb-blocks"), __("Applies CSS block to one or more selected page templates. Applies to all page templates if none is selected.", "superb-blocks"));
32 });
33 }
34 }
35