PluginProbe
Elementor Website Builder – more than just a page builder / 4.1.5
Elementor Website Builder – more than just a page builder v4.1.5
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 / modules / atomic-widgets / library / flexbox.php

flexbox.php in Elementor Website Builder – more than just a page builder 4.1.5, at modules/atomic-widgets/library/flexbox.php

68 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Modules\AtomicWidgets\Library;
3
4 use Elementor\Modules\Library\Documents\Library_Document;
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit; // Exit if accessed directly.
8 }
9
10 /**
11 * Elementor Flexbox library document.
12 *
13 * Elementor flexbox library document handler class is responsible for
14 * handling a document of a flexbox type.
15 *
16 * @since 3.29.0
17 */
18 class Flexbox extends Library_Document {
19
20 public static function get_properties() {
21 $properties = parent::get_properties();
22
23 $properties['support_kit'] = true;
24
25 return $properties;
26 }
27
28 /**
29 * Get document name.
30 *
31 * Retrieve the document name.
32 *
33 * @since 2.0.0
34 * @access public
35 *
36 * @return string Document name.
37 */
38 public function get_name() {
39 return 'e-flexbox';
40 }
41
42 /**
43 * Get document title.
44 *
45 * Retrieve the document title.
46 *
47 * @since 2.0.0
48 * @access public
49 * @static
50 *
51 * @return string Document title.
52 */
53 public static function get_title() {
54 return esc_html__( 'Flexbox', 'elementor' );
55 }
56
57 /**
58 * Get Type
59 *
60 * Return the flexbox document type.
61 *
62 * @return string
63 */
64 public static function get_type() {
65 return 'e-flexbox';
66 }
67 }
68