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 / site-navigation / data / controller.php

controller.php in Elementor Website Builder – more than just a page builder 4.1.5, at modules/site-navigation/data/controller.php

53 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\Modules\SiteNavigation\Data;
4
5 use Elementor\Plugin;
6 use Elementor\Data\V2\Base\Controller as Base_Controller;
7 use Elementor\Modules\SiteNavigation\Data\Endpoints\Add_New_Post;
8 use Elementor\Modules\SiteNavigation\Data\Endpoints\Duplicate_Post;
9 use Elementor\Modules\SiteNavigation\Data\Endpoints\Homepage;
10 use Elementor\Modules\SiteNavigation\Data\Endpoints\Recent_Posts;
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit; // Exit if accessed directly.
14 }
15
16 class Controller extends Base_Controller {
17
18 public function get_name() {
19 return 'site-navigation';
20 }
21
22 public function get_items_permissions_check( $request ) {
23 return current_user_can( 'edit_posts' );
24 }
25
26 public function create_items_permissions_check( $request ): bool {
27 // Permissions check is located in the endpoint
28 return true;
29 }
30
31 public function get_item_permissions_check( $request ) {
32 return $this->get_items_permissions_check( $request );
33 }
34
35 public function create_item_permissions_check( $request ): bool {
36 return $this->create_items_permissions_check( $request );
37 }
38
39 public function register_endpoints() {
40 $this->register_endpoint( new Recent_Posts( $this ) );
41 $this->register_endpoint( new Add_New_Post( $this ) );
42
43 if ( Plugin::$instance->experiments->is_feature_active( 'pages_panel' ) ) {
44 $this->register_endpoint( new Duplicate_Post( $this ) );
45 $this->register_endpoint( new Homepage( $this ) );
46 }
47 }
48
49 protected function register_index_endpoint() {
50 // Bypass, currently does not required.
51 }
52 }
53