D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sanghavirealty
/
www
/
wp-content
/
plugins
/
elementor-pro
/
core
/
data
/
endpoints
/
Filename :
base.php
back
Copy
<?php namespace ElementorPro\Core\Data\Endpoints; use ElementorPro\Core\Data\Controller; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Base { protected $controller; protected function register() {} /** * Endpoint constructor. * * runs `$this->register()`. * * @param Controller $controller */ public function __construct( Controller $controller ) { $this->controller = $controller; $this->register(); } }