PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
loop-filter
/
data
/
endpoints
<?php namespace ElementorPro\Modules\LoopFilter\Data\Endpoints; use ElementorPro\Modules\LoopFilter\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(); } }
[-] base.php
[edit]
[-] get-post-type-taxonomies.php
[edit]
[-] refresh-loop.php
[edit]
[+]
..