# elementor/3.13.2/modules/site-navigation/data/controller.php

Elementor Website Builder – more than just a page builder, version 3.13.2. 34 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.13.2/code/modules/site-navigation/data/controller.php
- Raw: https://pluginprobe.com/plugins/elementor/3.13.2/raw/modules/site-navigation/data/controller.php
- Modified: 2023-04-23T11:37:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.13.2/code/modules/site-navigation/data/controller.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\SiteNavigation\Data;

use Elementor\Data\V2\Base\Controller as Base_Controller;
use Elementor\Modules\SiteNavigation\Data\Endpoints\Recent_Posts;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Controller extends Base_Controller {

	public function get_name() {
		return 'site-navigation';
	}

	public function get_items_permissions_check( $request ) {
		return current_user_can( 'edit_posts' );
	}

	public function get_item_permissions_check( $request ) {
		return $this->get_items_permissions_check( $request );
	}

	public function register_endpoints() {
		$this->register_endpoint( new Recent_Posts( $this ) );
	}

	protected function register_index_endpoint() {
		// Bypass, currently does not required.
	}
}

```
