Your IP : 216.73.216.95


Current Path : /var/www/mainsite/new/wp-content/plugins/elementor/core/editor/data/globals/endpoints/
Upload File :
Current File : /var/www/mainsite/new/wp-content/plugins/elementor/core/editor/data/globals/endpoints/index.php

<?php
namespace Elementor\Core\Editor\Data\Globals\Endpoints;

use Elementor\Data\Base\Endpoint;

// TODO: Create base class for index endpoints, and move this function to there.
class Index extends Endpoint {
	public function get_name() {
		return 'index'; // TODO: Replace with BaseIndex class.
	}

	public function get_items( $request ) {
		return $this->controller->get_items_recursive( [ $this ] ); // TODO: Replace with BaseIndex class.
	}
}