pa-image-choose.php
8 months ago
premium-acf-selector.php
8 months ago
premium-background.php
8 months ago
premium-post-filter.php
8 months ago
premium-select.php
8 months ago
premium-tax-filter.php
8 months ago
premium-background.php
311 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Class: Premium_Background |
| 5 | * Name: Premium Background |
| 6 | * Slug: premium-background |
| 7 | */ |
| 8 | |
| 9 | namespace PremiumAddons\Includes\Controls; |
| 10 | |
| 11 | use Elementor\Controls_Manager; |
| 12 | use Elementor\Group_Control_Background; |
| 13 | |
| 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 15 | exit(); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Premium background control. |
| 20 | * |
| 21 | * A base control for creating background control. Displays input fields to define |
| 22 | * the background color, background image, background gradient or background video. |
| 23 | * |
| 24 | * @since 4.11.34 |
| 25 | */ |
| 26 | class Premium_Background extends Group_Control_Background { |
| 27 | |
| 28 | /** |
| 29 | * Fields. |
| 30 | * |
| 31 | * Holds all the background control fields. |
| 32 | * |
| 33 | * @since 1.2.2 |
| 34 | * @access protected |
| 35 | * @static |
| 36 | * |
| 37 | * @var array Background control fields. |
| 38 | */ |
| 39 | protected static $fields; |
| 40 | |
| 41 | /** |
| 42 | * Get background control type. |
| 43 | * |
| 44 | * Retrieve the control type, in this case `background`. |
| 45 | * |
| 46 | * @return string Control type. |
| 47 | * @since 1.0.0 |
| 48 | * @access public |
| 49 | * @static |
| 50 | * |
| 51 | */ |
| 52 | public static function get_type() { |
| 53 | return 'pa-background'; |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Init fields. |
| 58 | * |
| 59 | * Initialize background control fields. |
| 60 | * |
| 61 | * @return array Control fields. |
| 62 | * @since 1.2.2 |
| 63 | * @access public |
| 64 | * |
| 65 | */ |
| 66 | public function init_fields() { |
| 67 | $fields = []; |
| 68 | |
| 69 | $fields['background'] = [ |
| 70 | 'label' => esc_html_x( 'Background Type', 'Background Control', 'premium-addons-for-elementor' ), |
| 71 | 'type' => Controls_Manager::CHOOSE, |
| 72 | 'render_type' => 'ui', |
| 73 | ]; |
| 74 | |
| 75 | $fields['color'] = [ |
| 76 | 'label' => esc_html_x( 'Color', 'Background Control', 'premium-addons-for-elementor' ), |
| 77 | 'type' => Controls_Manager::COLOR, |
| 78 | 'default' => '', |
| 79 | 'title' => esc_html_x( 'Background Color', 'Background Control', 'premium-addons-for-elementor' ), |
| 80 | 'selectors' => [ |
| 81 | '{{SELECTOR}}' => 'background-color: {{VALUE}};', |
| 82 | ], |
| 83 | 'condition' => [ |
| 84 | 'background' => [ 'classic', 'gradient', 'video' ], |
| 85 | ], |
| 86 | ]; |
| 87 | |
| 88 | $fields['color_stop'] = [ |
| 89 | 'label' => esc_html_x( 'Location', 'Background Control', 'premium-addons-for-elementor' ), |
| 90 | 'type' => Controls_Manager::SLIDER, |
| 91 | 'size_units' => [ '%', 'custom' ], |
| 92 | 'default' => [ |
| 93 | 'unit' => '%', |
| 94 | 'size' => 0, |
| 95 | ], |
| 96 | 'render_type' => 'ui', |
| 97 | 'condition' => [ |
| 98 | 'background' => [ 'gradient' ], |
| 99 | ], |
| 100 | 'of_type' => 'gradient', |
| 101 | ]; |
| 102 | |
| 103 | $fields['color_b'] = [ |
| 104 | 'label' => esc_html_x( 'Second Color', 'Background Control', 'premium-addons-for-elementor' ), |
| 105 | 'type' => Controls_Manager::COLOR, |
| 106 | 'default' => '#f2295b', |
| 107 | 'render_type' => 'ui', |
| 108 | 'condition' => [ |
| 109 | 'background' => [ 'gradient' ], |
| 110 | ], |
| 111 | 'of_type' => 'gradient', |
| 112 | ]; |
| 113 | |
| 114 | $fields['color_b_stop'] = [ |
| 115 | 'label' => esc_html_x( 'Location', 'Background Control', 'premium-addons-for-elementor' ), |
| 116 | 'type' => Controls_Manager::SLIDER, |
| 117 | 'size_units' => [ '%', 'custom' ], |
| 118 | 'default' => [ |
| 119 | 'unit' => '%', |
| 120 | 'size' => 100, |
| 121 | ], |
| 122 | 'render_type' => 'ui', |
| 123 | 'condition' => [ |
| 124 | 'background' => [ 'gradient' ], |
| 125 | ], |
| 126 | 'of_type' => 'gradient', |
| 127 | ]; |
| 128 | |
| 129 | $fields['gradient_type'] = [ |
| 130 | 'label' => esc_html_x( 'Type', 'Background Control', 'premium-addons-for-elementor' ), |
| 131 | 'type' => Controls_Manager::SELECT, |
| 132 | 'options' => [ |
| 133 | 'linear' => esc_html_x( 'Linear', 'Background Control', 'premium-addons-for-elementor' ), |
| 134 | 'radial' => esc_html_x( 'Radial', 'Background Control', 'premium-addons-for-elementor' ), |
| 135 | ], |
| 136 | 'default' => 'linear', |
| 137 | 'render_type' => 'ui', |
| 138 | 'condition' => [ |
| 139 | 'background' => [ 'gradient' ], |
| 140 | ], |
| 141 | 'of_type' => 'gradient', |
| 142 | ]; |
| 143 | |
| 144 | $fields['gradient_angle'] = [ |
| 145 | 'label' => esc_html_x( 'Angle', 'Background Control', 'premium-addons-for-elementor' ), |
| 146 | 'type' => Controls_Manager::SLIDER, |
| 147 | 'size_units' => [ 'deg', 'grad', 'rad', 'turn', 'custom' ], |
| 148 | 'default' => [ |
| 149 | 'unit' => 'deg', |
| 150 | 'size' => 180, |
| 151 | ], |
| 152 | 'selectors' => [ |
| 153 | '{{SELECTOR}}' => 'background-color: transparent; background-image: linear-gradient({{SIZE}}{{UNIT}}, {{color.VALUE}} {{color_stop.SIZE}}{{color_stop.UNIT}}, {{color_b.VALUE}} {{color_b_stop.SIZE}}{{color_b_stop.UNIT}})', |
| 154 | ], |
| 155 | 'condition' => [ |
| 156 | 'background' => [ 'gradient' ], |
| 157 | 'gradient_type' => 'linear', |
| 158 | ], |
| 159 | 'of_type' => 'gradient', |
| 160 | ]; |
| 161 | |
| 162 | $fields['gradient_position'] = [ |
| 163 | 'label' => esc_html_x( 'Position', 'Background Control', 'premium-addons-for-elementor' ), |
| 164 | 'type' => Controls_Manager::SELECT, |
| 165 | 'options' => [ |
| 166 | 'center center' => esc_html_x( 'Center Center', 'Background Control', 'premium-addons-for-elementor' ), |
| 167 | 'center left' => esc_html_x( 'Center Left', 'Background Control', 'premium-addons-for-elementor' ), |
| 168 | 'center right' => esc_html_x( 'Center Right', 'Background Control', 'premium-addons-for-elementor' ), |
| 169 | 'top center' => esc_html_x( 'Top Center', 'Background Control', 'premium-addons-for-elementor' ), |
| 170 | 'top left' => esc_html_x( 'Top Left', 'Background Control', 'premium-addons-for-elementor' ), |
| 171 | 'top right' => esc_html_x( 'Top Right', 'Background Control', 'premium-addons-for-elementor' ), |
| 172 | 'bottom center' => esc_html_x( 'Bottom Center', 'Background Control', 'premium-addons-for-elementor' ), |
| 173 | 'bottom left' => esc_html_x( 'Bottom Left', 'Background Control', 'premium-addons-for-elementor' ), |
| 174 | 'bottom right' => esc_html_x( 'Bottom Right', 'Background Control', 'premium-addons-for-elementor' ), |
| 175 | ], |
| 176 | 'default' => 'center center', |
| 177 | 'selectors' => [ |
| 178 | '{{SELECTOR}}' => 'background-color: transparent; background-image: radial-gradient(at {{VALUE}}, {{color.VALUE}} {{color_stop.SIZE}}{{color_stop.UNIT}}, {{color_b.VALUE}} {{color_b_stop.SIZE}}{{color_b_stop.UNIT}})', |
| 179 | ], |
| 180 | 'condition' => [ |
| 181 | 'background' => [ 'gradient' ], |
| 182 | 'gradient_type' => 'radial', |
| 183 | ], |
| 184 | 'of_type' => 'gradient', |
| 185 | ]; |
| 186 | |
| 187 | $fields['image'] = [ |
| 188 | 'label' => esc_html_x( 'Image', 'Background Control', 'premium-addons-for-elementor' ), |
| 189 | 'type' => Controls_Manager::MEDIA, |
| 190 | 'ai' => [ |
| 191 | 'category' => 'background', |
| 192 | ], |
| 193 | 'dynamic' => [ |
| 194 | 'active' => true, |
| 195 | ], |
| 196 | 'responsive' => false, |
| 197 | 'title' => esc_html_x( 'Background Image', 'Background Control', 'premium-addons-for-elementor' ), |
| 198 | 'selectors' => [ |
| 199 | '{{SELECTOR}}' => 'background-image: url("{{URL}}");', |
| 200 | ], |
| 201 | 'has_sizes' => true, |
| 202 | 'render_type' => 'template', |
| 203 | 'condition' => [ |
| 204 | 'background' => [ 'classic' ], |
| 205 | ], |
| 206 | ]; |
| 207 | |
| 208 | $fields['position'] = [ |
| 209 | 'label' => esc_html_x( 'Position', 'Background Control', 'premium-addons-for-elementor' ), |
| 210 | 'type' => Controls_Manager::SELECT, |
| 211 | 'default' => '', |
| 212 | 'separator' => 'before', |
| 213 | 'responsive' => false, |
| 214 | 'options' => [ |
| 215 | '' => esc_html_x( 'Default', 'Background Control', 'premium-addons-for-elementor' ), |
| 216 | 'center center' => esc_html_x( 'Center Center', 'Background Control', 'premium-addons-for-elementor' ), |
| 217 | 'center left' => esc_html_x( 'Center Left', 'Background Control', 'premium-addons-for-elementor' ), |
| 218 | 'center right' => esc_html_x( 'Center Right', 'Background Control', 'premium-addons-for-elementor' ), |
| 219 | 'top center' => esc_html_x( 'Top Center', 'Background Control', 'premium-addons-for-elementor' ), |
| 220 | 'top left' => esc_html_x( 'Top Left', 'Background Control', 'premium-addons-for-elementor' ), |
| 221 | 'top right' => esc_html_x( 'Top Right', 'Background Control', 'premium-addons-for-elementor' ), |
| 222 | 'bottom center' => esc_html_x( 'Bottom Center', 'Background Control', 'premium-addons-for-elementor' ), |
| 223 | 'bottom left' => esc_html_x( 'Bottom Left', 'Background Control', 'premium-addons-for-elementor' ), |
| 224 | 'bottom right' => esc_html_x( 'Bottom Right', 'Background Control', 'premium-addons-for-elementor' ), |
| 225 | |
| 226 | ], |
| 227 | 'selectors' => [ |
| 228 | '{{SELECTOR}}' => 'background-position: {{VALUE}};', |
| 229 | ], |
| 230 | 'condition' => [ |
| 231 | 'background' => [ 'classic' ], |
| 232 | 'image[url]!' => '', |
| 233 | ], |
| 234 | ]; |
| 235 | |
| 236 | $fields['attachment'] = [ |
| 237 | 'label' => esc_html_x( 'Attachment', 'Background Control', 'premium-addons-for-elementor' ), |
| 238 | 'type' => Controls_Manager::SELECT, |
| 239 | 'default' => '', |
| 240 | 'options' => [ |
| 241 | '' => esc_html_x( 'Default', 'Background Control', 'premium-addons-for-elementor' ), |
| 242 | 'scroll' => esc_html_x( 'Scroll', 'Background Control', 'premium-addons-for-elementor' ), |
| 243 | 'fixed' => esc_html_x( 'Fixed', 'Background Control', 'premium-addons-for-elementor' ), |
| 244 | ], |
| 245 | 'selectors' => [ |
| 246 | '(desktop+){{SELECTOR}}' => 'background-attachment: {{VALUE}};', |
| 247 | ], |
| 248 | 'condition' => [ |
| 249 | 'background' => [ 'classic' ], |
| 250 | 'image[url]!' => '', |
| 251 | ], |
| 252 | ]; |
| 253 | |
| 254 | $fields['attachment_alert'] = [ |
| 255 | 'type' => Controls_Manager::RAW_HTML, |
| 256 | 'content_classes' => 'elementor-control-field-description', |
| 257 | 'raw' => esc_html__( 'Note: Attachment Fixed works only on desktop.', 'premium-addons-for-elementor' ), |
| 258 | 'separator' => 'none', |
| 259 | 'condition' => [ |
| 260 | 'background' => [ 'classic' ], |
| 261 | 'image[url]!' => '', |
| 262 | 'attachment' => 'fixed', |
| 263 | ], |
| 264 | ]; |
| 265 | |
| 266 | $fields['repeat'] = [ |
| 267 | 'label' => esc_html_x( 'Repeat', 'Background Control', 'premium-addons-for-elementor' ), |
| 268 | 'type' => Controls_Manager::SELECT, |
| 269 | 'default' => '', |
| 270 | 'responsive' => false, |
| 271 | 'options' => [ |
| 272 | '' => esc_html_x( 'Default', 'Background Control', 'premium-addons-for-elementor' ), |
| 273 | 'no-repeat' => esc_html_x( 'No-repeat', 'Background Control', 'premium-addons-for-elementor' ), |
| 274 | 'repeat' => esc_html_x( 'Repeat', 'Background Control', 'premium-addons-for-elementor' ), |
| 275 | 'repeat-x' => esc_html_x( 'Repeat-x', 'Background Control', 'premium-addons-for-elementor' ), |
| 276 | 'repeat-y' => esc_html_x( 'Repeat-y', 'Background Control', 'premium-addons-for-elementor' ), |
| 277 | ], |
| 278 | 'selectors' => [ |
| 279 | '{{SELECTOR}}' => 'background-repeat: {{VALUE}};', |
| 280 | ], |
| 281 | 'condition' => [ |
| 282 | 'background' => [ 'classic' ], |
| 283 | 'image[url]!' => '', |
| 284 | ], |
| 285 | ]; |
| 286 | |
| 287 | $fields['size'] = [ |
| 288 | 'label' => esc_html_x( 'Display Size', 'Background Control', 'premium-addons-for-elementor' ), |
| 289 | 'type' => Controls_Manager::SELECT, |
| 290 | 'responsive' => false, |
| 291 | 'default' => '', |
| 292 | 'options' => [ |
| 293 | '' => esc_html_x( 'Default', 'Background Control', 'premium-addons-for-elementor' ), |
| 294 | 'auto' => esc_html_x( 'Auto', 'Background Control', 'premium-addons-for-elementor' ), |
| 295 | 'cover' => esc_html_x( 'Cover', 'Background Control', 'premium-addons-for-elementor' ), |
| 296 | 'contain' => esc_html_x( 'Contain', 'Background Control', 'premium-addons-for-elementor' ), |
| 297 | ], |
| 298 | 'selectors' => [ |
| 299 | '{{SELECTOR}}' => 'background-size: {{VALUE}};', |
| 300 | ], |
| 301 | 'condition' => [ |
| 302 | 'background' => [ 'classic' ], |
| 303 | 'image[url]!' => '', |
| 304 | ], |
| 305 | ]; |
| 306 | |
| 307 | return $fields; |
| 308 | } |
| 309 | |
| 310 | } |
| 311 |