<?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(); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
base.php | File | 464 B | 0644 |
|
refresh-base.php | File | 2.13 KB | 0644 |
|