Current Path: > home > > transcarter > public_html > wp-content > > plugins > elementor > > data > > v2 > base >
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
endpoint | Directory | - | - | |
exceptions | Directory | - | - | |
processor | Directory | - | - | |
base-route.php | File | 10401 bytes | July 17 2025 21:06:23. | |
controller.php | File | 11921 bytes | July 17 2025 21:06:23. | |
endpoint.php | File | 3042 bytes | July 17 2025 21:06:23. | |
processor.php | File | 872 bytes | July 17 2025 21:06:23. |
<?php namespace Elementor\Data\V2\Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Processor is just typically HOOK, who called before or after a command runs. * It exist to simulate frontend ($e.data) like mechanism with commands and hooks, since each * controller or endpoint is reachable via command (get_format). * The `Elementor\Data\V2\Manager::run` is able to run them with the ability to reach the endpoint. */ abstract class Processor { /** * Controller. * * @var \Elementor\Data\V2\Base\Controller */ private $controller; /** * Get processor command. * * @return string */ abstract public function get_command(); /** * Processor constructor. * * @param \Elementor\Data\V2\Base\Controller $controller */ public function __construct( $controller ) { $this->controller = $controller; } }
SILENT KILLER Tool