PluginProbe
Elementor Website Builder – more than just a page builder / 3.20.2
Elementor Website Builder – more than just a page builder v3.20.2
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / core / kits / documents / tabs / settings-custom-css.php

settings-custom-css.php in Elementor Website Builder – more than just a page builder 3.20.2, at core/kits/documents/tabs/settings-custom-css.php

36 lines 704 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\Kits\Documents\Tabs;
3
4 use Elementor\Plugin;
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit; // Exit if accessed directly
8 }
9
10 class Settings_Custom_CSS extends Tab_Base {
11
12 public function get_id() {
13 return 'settings-custom-css';
14 }
15
16 public function get_title() {
17 return esc_html__( 'Custom CSS', 'elementor' );
18 }
19
20 public function get_group() {
21 return 'settings';
22 }
23
24 public function get_icon() {
25 return 'eicon-custom-css';
26 }
27
28 public function get_help_url() {
29 return 'https://go.elementor.com/global-custom-css/';
30 }
31
32 protected function register_tab_controls() {
33 Plugin::$instance->controls_manager->add_custom_css_controls( $this->parent, $this->get_id() );
34 }
35 }
36