$opener_tag ]->start + $this->bookmarks[ $opener_tag ]->length + 1;
$before_closer_tag = $this->bookmarks[ $closer_tag ]->start;
if ( $rewind ) {
$this->seek( $opener_tag );
}
$this->release_bookmark( $opener_tag );
$this->release_bookmark( $closer_tag );
return array( $after_opener_tag, $before_closer_tag );
}
/**
* Returns a pair of bookmarks for the current opener tag and the matching
* closer tag.
*
* It positions the cursor in the closer tag of the balanced tag, if it
* exists.
*
* @since 6.5.0
*
* @return array|null A pair of bookmarks, or null if there's no matching closing tag.
*/
private function get_balanced_tag_bookmarks() {
static $i = 0;
$opener_tag = 'opener_tag_of_balanced_tag_' . ++$i;
$this->set_bookmark( $opener_tag );
if ( ! $this->next_balanced_tag_closer_tag() ) {
$this->release_bookmark( $opener_tag );
return null;
}
$closer_tag = 'closer_tag_of_balanced_tag_' . ++$i;
$this->set_bookmark( $closer_tag );
return array( $opener_tag, $closer_tag );
}
/**
* Skips processing the content between tags.
*
* It positions the cursor in the closer tag of the foreign element, if it
* exists.
*
* This function is intended to skip processing SVG and MathML inner content
* instead of bailing out the whole processing.
*
* @since 6.5.0
*
* @access private
*
* @return bool Whether the foreign content was successfully skipped.
*/
public function skip_to_tag_closer(): bool {
$depth = 1;
$tag_name = $this->get_tag();
while ( $depth > 0 && $this->next_tag(
array(
'tag_name' => $tag_name,
'tag_closers' => 'visit',
)
) ) {
if ( $this->has_self_closing_flag() ) {
continue;
}
$depth += $this->is_tag_closer() ? -1 : 1;
}
return 0 === $depth;
}
/**
* Finds the matching closing tag for an opening tag.
*
* When called while the processor is on an open tag, it traverses the HTML
* until it finds the matching closer tag, respecting any in-between content,
* including nested tags of the same name. Returns false when called on a
* closer tag, a tag that doesn't have a closer tag (void), a tag that
* doesn't visit the closer tag, or if no matching closing tag was found.
*
* @since 6.5.0
*
* @access private
*
* @return bool Whether a matching closing tag was found.
*/
public function next_balanced_tag_closer_tag(): bool {
$depth = 0;
$tag_name = $this->get_tag();
if ( ! $this->has_and_visits_its_closer_tag() ) {
return false;
}
while ( $this->next_tag(
array(
'tag_name' => $tag_name,
'tag_closers' => 'visit',
)
) ) {
if ( ! $this->is_tag_closer() ) {
++$depth;
continue;
}
if ( 0 === $depth ) {
return true;
}
--$depth;
}
return false;
}
/**
* Checks whether the current tag has and will visit its matching closer tag.
*
* @since 6.5.0
*
* @access private
*
* @return bool Whether the current tag has a closer tag.
*/
public function has_and_visits_its_closer_tag(): bool {
$tag_name = $this->get_tag();
return null !== $tag_name && (
! WP_HTML_Processor::is_void( $tag_name ) &&
! in_array( $tag_name, self::TAGS_THAT_DONT_VISIT_CLOSER_TAG, true )
);
}
}
ormatted, 0, strpos( $formatted, '/{' ) );
}
$endpoint = $formatted;
}
return $endpoint;
}
/**
* Run server.
*
* Init WordPress reset api.
*
* @return \WP_REST_Server
*/
public function run_server() {
/**
* If run_server() called means, that rest api is simulated from the backend.
*/
$this->is_internal = true;
if ( ! $this->server ) {
// Remove all 'rest_api_init' actions.
remove_all_actions( 'rest_api_init' );
// Call custom reset api loader.
do_action( 'elementor_rest_api_before_init' );
$this->server = rest_get_server(); // Init API.
}
return $this->server;
}
/**
* Kill server.
*
* Free server and controllers.
*/
public function kill_server() {
global $wp_rest_server;
$this->controllers = [];
$this->command_formats = [];
$this->server = false;
$this->is_internal = false;
$this->cache = [];
$wp_rest_server = false;
}
/**
* Run processor.
*
* @param \Elementor\Data\V2\Base\Processor $processor
* @param array $data
*
* @return mixed
*/
public function run_processor( $processor, $data ) {
if ( call_user_func_array( [ $processor, 'get_conditions' ], $data ) ) {
return call_user_func_array( [ $processor, 'apply' ], $data );
}
return null;
}
/**
* Run processors.
*
* Filter them by class.
*
* @param \Elementor\Data\V2\Base\Processor[] $processors
* @param string $filter_by_class
* @param array $data
*
* @return false|array
*/
public function run_processors( $processors, $filter_by_class, $data ) {
foreach ( $processors as $processor ) {
if ( $processor instanceof $filter_by_class ) {
if ( Processor\Before::class === $filter_by_class ) {
$this->run_processor( $processor, $data );
} elseif ( Processor\After::class === $filter_by_class ) {
$result = $this->run_processor( $processor, $data );
if ( $result ) {
$data[1] = $result;
}
} else {
trigger_error( "Invalid processor filter: '\${ $filter_by_class }'" ); // phpcs:ignore
break;
}
}
}
return isset( $data[1] ) ? $data[1] : false;
}
/**
* Run request.
*
* Simulate rest API from within the backend.
* Use args as query.
*
* @param string $endpoint
* @param array $args
* @param string $method
* @param string $namespace (optional)
* @param string $version (optional)
*
* @return \WP_REST_Response
*/
public function run_request( $endpoint, $args = [], $method = \WP_REST_Server::READABLE, $namespace = self::ROOT_NAMESPACE, $version = self::VERSION ) {
$this->run_server();
$endpoint = '/' . $namespace . '/v' . $version . '/' . trim( $endpoint, '/' );
// Run reset api.
$request = new \WP_REST_Request( $method, $endpoint );
if ( 'GET' === $method ) {
$request->set_query_params( $args );
} else {
$request->set_body_params( $args );
}
return rest_do_request( $request );
}
/**
* Run endpoint.
*
* Wrapper for `$this->run_request` return `$response->getData()` instead of `$response`.
*
* @param string $endpoint
* @param array $args
* @param string $method
*
* @return array
*/
public function run_endpoint( $endpoint, $args = [], $method = 'GET' ) {
// The method become public since it used in `Elementor\Data\V2\Base\Endpoint\Index\AllChildren`.
$response = $this->run_request( $endpoint, $args, $method );
return $response->get_data();
}
/**
* Run ( simulated reset api ).
*
* Do:
* Init reset server.
* Run before processors.
* Run command as reset api endpoint from internal.
* Run after processors.
*
* @param string $command
* @param array $args
* @param string $method
*
* @return array|false processed result
*/
public function run( $command, $args = [], $method = 'GET' ) {
$key = crc32( $command . '-' . wp_json_encode( $args ) . '-' . $method );
$cache = $this->get_cache( $key );
if ( $cache ) {
return $cache;
}
$this->run_server();
$controller_instance = $this->find_controller_instance( $command );
if ( ! $controller_instance ) {
$this->set_cache( $key, [] );
return [];
}
$extracted_command = $this->command_extract_args( $command, $args );
$command = $extracted_command->command;
$args = $extracted_command->args;
$format = isset( $this->command_formats[ $command ] ) ? $this->command_formats[ $command ] : false;
$command_processors = $controller_instance->get_processors( $command );
$endpoint = $this->command_to_endpoint( $command, $format, $args );
$this->run_processors( $command_processors, Processor\Before::class, [ $args ] );
$response = $this->run_request( $endpoint, $args, $method );
$result = $response->get_data();
if ( $response->is_error() ) {
$this->set_cache( $key, [] );
return [];
}
$result = $this->run_processors( $command_processors, Processor\After::class, [ $args, $result ] );
$this->set_cache( $key, $result );
return $result;
}
public function is_internal() {
return $this->is_internal;
}
}
Fatal error: Uncaught Error: Class 'Elementor\Data\V2\Manager' not found in /var/www/html/helitower.com.br/web/wp-content/plugins/elementor/includes/plugin.php:845
Stack trace:
#0 /var/www/html/helitower.com.br/web/wp-content/plugins/elementor/includes/plugin.php(620): Elementor\Plugin->__construct()
#1 /var/www/html/helitower.com.br/web/wp-content/plugins/elementor/includes/plugin.php(861): Elementor\Plugin::instance()
#2 /var/www/html/helitower.com.br/web/wp-content/plugins/elementor/elementor.php(53): require('/var/www/html/h...')
#3 /var/www/html/helitower.com.br/web/wp-settings.php(517): include_once('/var/www/html/h...')
#4 /var/www/html/helitower.com.br/web/wp-config.php(99): require_once('/var/www/html/h...')
#5 /var/www/html/helitower.com.br/web/wp-load.php(50): require_once('/var/www/html/h...')
#6 /var/www/html/helitower.com.br/web/wp-blog-header.php(13): require_once('/var/www/html/h...')
#7 /var/www/html/helitower.com.br/web/index.php(18): require('/var/www/html/h...')
#8 {main}
thrown in /var/www/html/helitower.com.br/web/wp-content/plugins/elementor/includes/plugin.php on line 845