PluginProbe
Elementor Website Builder – more than just a page builder / 3.35.3
Elementor Website Builder – more than just a page builder v3.35.3
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 / includes / widgets / inner-section.php

inner-section.php in Elementor Website Builder – more than just a page builder 3.35.3, at includes/widgets/inner-section.php

63 lines 917 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7
8 /**
9 * Elementor Inner Section widget.
10 *
11 * Elementor widget that creates nested columns within a section.
12 *
13 * @since 3.5.0
14 */
15 class Widget_Inner_Section extends Widget_Base {
16
17 /**
18 * @inheritDoc
19 */
20 public static function get_type() {
21 return 'section';
22 }
23
24 /**
25 * @inheritDoc
26 */
27 public function get_name() {
28 return 'inner-section';
29 }
30
31 /**
32 * @inheritDoc
33 */
34 public function get_title() {
35 return esc_html__( 'Inner Section', 'elementor' );
36 }
37
38 /**
39 * @inheritDoc
40 */
41 public function get_icon() {
42 return 'eicon-columns';
43 }
44
45 /**
46 * @inheritDoc
47 */
48 public function get_categories() {
49 return [ 'basic' ];
50 }
51
52 /**
53 * @inheritDoc
54 */
55 public function get_keywords() {
56 return [ 'row', 'columns', 'nested' ];
57 }
58
59 protected function is_dynamic_content(): bool {
60 return false;
61 }
62 }
63