PluginProbe
Elementor Website Builder – more than just a page builder / 3.5.0-dev8
Elementor Website Builder – more than just a page builder v3.5.0-dev8
4.3.0-beta3 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 All 452 releases
elementor / core / kits / documents / tabs / settings-page-transitions.php

settings-page-transitions.php in Elementor Website Builder – more than just a page builder 3.5.0-dev8, at core/kits/documents/tabs/settings-page-transitions.php

38 lines 754 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_Page_Transitions extends Tab_Base {
11
12 const TAB_ID = 'settings-page-transitions';
13
14 public function get_id() {
15 return self::TAB_ID;
16 }
17
18 public function get_title() {
19 return __( 'Page Transitions', 'elementor' );
20 }
21
22 public function get_group() {
23 return 'settings';
24 }
25
26 public function get_icon() {
27 return 'eicon-layout-settings';
28 }
29
30 public function get_help_url() {
31 return 'https://go.elementor.com/page-transitions';
32 }
33
34 protected function register_tab_controls() {
35 Plugin::$instance->controls_manager->add_page_transitions_controls( $this->parent, $this->get_id() );
36 }
37 }
38