✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.223
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/checkout//front-end-integration.php
<?php

namespace Yoast\WP\SEO\Integrations;

use WP_HTML_Tag_Processor;
use WPSEO_Replace_Vars;
use Yoast\WP\SEO\Conditionals\Dynamic_Product_Permalinks_Conditional;
use Yoast\WP\SEO\Conditionals\Front_End_Conditional;
use Yoast\WP\SEO\Conditionals\WooCommerce_Version_Conditional;
use Yoast\WP\SEO\Context\Meta_Tags_Context;
use Yoast\WP\SEO\Helpers\Options_Helper;
use Yoast\WP\SEO\Helpers\Permalink_Helper;
use Yoast\WP\SEO\Memoizers\Meta_Tags_Context_Memoizer;
use Yoast\WP\SEO\Presenters\Abstract_Indexable_Presenter;
use Yoast\WP\SEO\Presenters\Debug\Marker_Close_Presenter;
use Yoast\WP\SEO\Presenters\Debug\Marker_Open_Presenter;
use Yoast\WP\SEO\Presenters\Title_Presenter;
use Yoast\WP\SEO\Repositories\Indexable_Repository;
use Yoast\WP\SEO\Surfaces\Helpers_Surface;
use YoastSEO_Vendor\Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Class Front_End_Integration.
 */
class Front_End_Integration implements Integration_Interface {

	/**
	 * The memoizer for the meta tags context.
	 *
	 * @var Meta_Tags_Context_Memoizer
	 */
	private $context_memoizer;

	/**
	 * The container.
	 *
	 * @var ContainerInterface
	 */
	protected $container;

	/**
	 * Represents the options helper.
	 *
	 * @var Options_Helper
	 */
	protected $options;

	/**
	 * Represents the permalink helper.
	 *
	 * @var Permalink_Helper
	 */
	protected $permalink_helper;

	/**
	 * The helpers surface.
	 *
	 * @var Helpers_Surface
	 */
	protected $helpers;

	/**
	 * The indexable repository.
	 *
	 * @var Indexable_Repository
	 */
	protected $indexable_repository;

	/**
	 * The replace vars helper.
	 *
	 * @var WPSEO_Replace_Vars
	 */
	protected $replace_vars;

	/**
	 * The presenters we loop through on each page load.
	 *
	 * @var string[]
	 */
	protected $base_presenters = [
		'Title',
		'Meta_Description',
		'Robots',
	];

	/**
	 * The presenters we loop through on each page load.
	 *
	 * @var string[]
	 */
	protected $indexing_directive_presenters = [
		'Canonical',
		'Rel_Prev',
		'Rel_Next',
	];

	/**
	 * The Open Graph specific presenters.
	 *
	 * @var string[]
	 */
	protected $open_graph_presenters = [
		'Open_Graph\Locale',
		'Open_Graph\Type',
		'Open_Graph\Title',
		'Open_Graph\Description',
		'Open_Graph\Url',
		'Open_Graph\Site_Name',
		'Open_Graph\Article_Publisher',
		'Open_Graph\Article_Author',
		'Open_Graph\Article_Published_Time',
		'Open_Graph\Article_Modified_Time',
		'Open_Graph\Image',
		'Meta_Author',
	];

	/**
	 * The Open Graph specific presenters that should be output on error pages.
	 *
	 * @var array<string>
	 */
	protected $open_graph_error_presenters = [
		'Open_Graph\Locale',
		'Open_Graph\Title',
		'Open_Graph\Site_Name',
	];

	/**
	 * The Twitter card specific presenters.
	 *
	 * @var array<string>
	 */
	protected $twitter_card_presenters = [
		'Twitter\Card',
		'Twitter\Title',
		'Twitter\Description',
		'Twitter\Image',
		'Twitter\Creator',
		'Twitter\Site',
	];

	/**
	 * The Slack specific presenters.
	 *
	 * @var array<string>
	 */
	protected $slack_presenters = [
		'Slack\Enhanced_Data',
	];

	/**
	 * The Webmaster verification specific presenters.
	 *
	 * @var array<string>
	 */
	protected $webmaster_verification_presenters = [
		'Webmaster\Ahrefs',
		'Webmaster\Baidu',
		'Webmaster\Bing',
		'Webmaster\Google',
		'Webmaster\Pinterest',
		'Webmaster\Yandex',
	];

	/**
	 * Presenters that are only needed on singular pages.
	 *
	 * @var array<string>
	 */
	protected $singular_presenters = [
		'Meta_Author',
		'Open_Graph\Article_Author',
		'Open_Graph\Article_Publisher',
		'Open_Graph\Article_Published_Time',
		'Open_Graph\Article_Modified_Time',
		'Twitter\Creator',
		'Slack\Enhanced_Data',
	];

	/**
	 * The presenters we want to be last in our output.
	 *
	 * @var array<string>
	 */
	protected $closing_presenters = [
		'Schema',
	];

	/**
	 * The next output.
	 *
	 * @var string
	 */
	protected $next;

	/**
	 * The prev output.
	 *
	 * @var string
	 */
	protected $prev;

	/**
	 * Returns the conditionals based on which this loadable should be active.
	 *
	 * @return array<string> The conditionals.
	 */
	public static function get_conditionals() {
		return [ Front_End_Conditional::class ];
	}

	/**
	 * Front_End_Integration constructor.
	 *
	 * @codeCoverageIgnore It sets dependencies.
	 *
	 * @param Meta_Tags_Context_Memoizer $context_memoizer     The meta tags context memoizer.
	 * @param ContainerInterface         $service_container    The DI container.
	 * @param Options_Helper             $options              The options helper.
	 * @param Helpers_Surface            $helpers              The helpers surface.
	 * @param WPSEO_Replace_Vars         $replace_vars         The replace vars helper.
	 * @param Indexable_Repository       $indexable_repository The indexable repository.
	 * @param Permalink_Helper           $permalink_helper     The permalink helper.
	 */
	public function __construct(
		Meta_Tags_Context_Memoizer $context_memoizer,
		ContainerInterface $service_container,
		Options_Helper $options,
		Helpers_Surface $helpers,
		WPSEO_Replace_Vars $replace_vars,
		Indexable_Repository $indexable_repository,
		Permalink_Helper $permalink_helper
	) {
		$this->container            = $service_container;
		$this->context_memoizer     = $context_memoizer;
		$this->options              = $options;
		$this->helpers              = $helpers;
		$this->replace_vars         = $replace_vars;
		$this->indexable_repository = $indexable_repository;
		$this->permalink_helper     = $permalink_helper;
	}

	/**
	 * Registers the appropriate hooks to show the SEO metadata on the frontend.
	 *
	 * Removes some actions to remove metadata that WordPress shows on the frontend,
	 * to avoid duplicate and/or mismatched metadata.
	 *
	 * @return void
	 */
	public function register_hooks() {
		\add_filter( 'render_block', [ $this, 'query_loop_next_prev' ], 1, 2 );

		\add_action( 'wp_head', [ $this, 'call_wpseo_head' ], 1 );
		// Filter the title for compatibility with other plugins and themes.
		\add_filter( 'wp_title', [ $this, 'filter_title' ], 15 );
		// Filter the title for compatibility with block-based themes.
		\add_filter( 'pre_get_document_title', [ $this, 'filter_title' ], 15 );

		// Removes our robots presenter from the list when wp_robots is handling this.
		\add_filter( 'wpseo_frontend_presenter_classes', [ $this, 'filter_robots_presenter' ] );

		\add_action( 'wpseo_head', [ $this, 'present_head' ], -9999 );
		\add_action( 'wpseo_head', [ $this, 'update_outdated_permalink' ], -10_000 );

		\remove_action( 'wp_head', 'rel_canonical' );
		\remove_action( 'wp_head', 'index_rel_link' );
		\remove_action( 'wp_head', 'start_post_rel_link' );
		\remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head' );
		\remove_action( 'wp_head', 'noindex', 1 );
		\remove_action( 'wp_head', '_wp_render_title_tag', 1 );
		\remove_action( 'wp_head', '_block_template_render_title_tag', 1 );
		\remove_action( 'wp_head', 'gutenberg_render_title_tag', 1 );
	}

	/**
	 * Filters the title, mainly used for compatibility reasons.
	 *
	 * @return string
	 */
	public function filter_title() {
		$context = $this->context_memoizer->for_current_page();

		$title_presenter = new Title_Presenter();

		/** This filter is documented in src/integrations/front-end-integration.php */
		$title_presenter->presentation = \apply_filters( 'wpseo_frontend_presentation', $context->presentation, $context );
		$title_presenter->replace_vars = $this->replace_vars;
		$title_presenter->helpers      = $this->helpers;

		\remove_filter( 'pre_get_document_title', [ $this, 'filter_title' ], 15 );
		$title = \esc_html( $title_presenter->get() );
		\add_filter( 'pre_get_document_title', [ $this, 'filter_title' ], 15 );

		return $title;
	}

	/**
	 * Checks if the current entity has a permalink that has a mismatch
	 * with the permalink stored in its indexable. If they differ, purges the indexable's
	 * permalink so it will be recalculated in the same request.
	 *
	 * @return void
	 */
	public function update_outdated_permalink() {
		$dynamic_permalinks_conditional = new Dynamic_Product_Permalinks_Conditional();
		if ( ! $dynamic_permalinks_conditional->is_met() ) {
			return;
		}

		$woocommerce_version_conditional = new WooCommerce_Version_Conditional();
		if ( ! $woocommerce_version_conditional->is_met() ) {
			return;
		}

		$context = $this->context_memoizer->for_current_page();

		// We're adding this fix only for products because of the 10.5 Woo release. We might expand this for all cases in the future.
		if ( $context->indexable->object_sub_type !== 'product' ) {
			return;
		}

		$current_permalink   = $this->permalink_helper->get_permalink_for_post( $context->indexable->object_sub_type, $context->indexable->object_id );
		$indexable_permalink = $context->indexable->permalink;

		// Only purge if the permalinks differ.
		if ( $current_permalink !== $indexable_permalink ) {
			$this->indexable_repository->reset_permalink(
				$context->indexable->object_type,
				$context->indexable->object_sub_type,
				$context->indexable->object_id,
			);

			// Clear the memoizer caches so present_head() sees the updated indexable.
			$this->context_memoizer->clear_for_current_page();
			$this->context_memoizer->clear( $context->indexable );
		}
	}

	/**
	 * Filters the next and prev links in the query loop block.
	 *
	 * @param string                   $html  The HTML output.
	 * @param array<string|array|null> $block The block.
	 * @return string The filtered HTML output.
	 */
	public function query_loop_next_prev( $html, $block ) {
		if ( $block['blockName'] === 'core/query' ) {
			// Check that the query does not inherit the main query.
			if ( isset( $block['attrs']['query']['inherit'] ) && ! $block['attrs']['query']['inherit'] ) {
				\add_filter( 'wpseo_adjacent_rel_url', [ $this, 'adjacent_rel_url' ], 1, 3 );
			}
		}

		if ( $block['blockName'] === 'core/query-pagination-next' ) {
			$this->next = $html;
		}

		if ( $block['blockName'] === 'core/query-pagination-previous' ) {
			$this->prev = $html;
		}

		return $html;
	}

	/**
	 * Returns correct adjacent pages when Query loop block does not inherit query from template.
	 * Prioritizes existing prev and next links.
	 * Includes a safety check for full urls though it is not expected in the query pagination block.
	 *
	 * @param string                      $link         The current link.
	 * @param string                      $rel          Link relationship, prev or next.
	 * @param Indexable_Presentation|null $presentation The indexable presentation.
	 *
	 * @return string The correct link.
	 */
	public function adjacent_rel_url( $link, $rel, $presentation = null ) {
		// Prioritize existing prev and next links.
		if ( $link ) {
			return $link;
		}

		// Safety check for rel value.
		if ( $rel !== 'next' && $rel !== 'prev' ) {
			return $link;
		}

		// Check $this->next or $this->prev for existing links.
		if ( $this->$rel === null ) {
			return $link;
		}

		$processor = new WP_HTML_Tag_Processor( $this->$rel );

		if ( ! $processor->next_tag( [ 'tag_name' => 'a' ] ) ) {
			return $link;
		}

		$href = $processor->get_attribute( 'href' );

		if ( ! $href ) {
			return $link;
		}

		// Safety check for full url, not expected.
		if ( \strpos( $href, 'http' ) === 0 ) {
			return $href;
		}

		// Check if $href is relative and append last part of the url to permalink.
		if ( \strpos( $href, '/' ) === 0 ) {
			$href_parts = \explode( '/', $href );
			return $presentation->permalink . \end( $href_parts );
		}

		return $link;
	}

	/**
	 * Filters our robots presenter, but only when wp_robots is attached to the wp_head action.
	 *
	 * @param array<string> $presenters The presenters for current page.
	 *
	 * @return array<string> The filtered presenters.
	 */
	public function filter_robots_presenter( $presenters ) {
		if ( ! \function_exists( 'wp_robots' ) ) {
			return $presenters;
		}

		if ( ! \has_action( 'wp_head', 'wp_robots' ) ) {
			return $presenters;
		}

		if ( \wp_is_serving_rest_request() ) {
			return $presenters;
		}

		return \array_diff( $presenters, [ 'Yoast\\WP\\SEO\\Presenters\\Robots_Presenter' ] );
	}

	/**
	 * Presents the head in the front-end. Resets wp_query if it's not the main query.
	 *
	 * @codeCoverageIgnore It just calls a WordPress function.
	 *
	 * @return void
	 */
	public function call_wpseo_head() {
		global $wp_query;

		$old_wp_query = $wp_query;
		// phpcs:ignore WordPress.WP.DiscouragedFunctions.wp_reset_query_wp_reset_query -- Reason: The recommended function, wp_reset_postdata, doesn't reset wp_query.
		\wp_reset_query();

		\do_action( 'wpseo_head' );

		// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- Reason: we have to restore the query.
		$GLOBALS['wp_query'] = $old_wp_query;
	}

	/**
	 * Echoes all applicable presenters for a page.
	 *
	 * @return void
	 */
	public function present_head() {
		$context    = $this->context_memoizer->for_current_page();
		$presenters = $this->get_presenters( $context->page_type, $context );

		/**
		 * Filter 'wpseo_frontend_presentation' - Allow filtering the presentation used to output our meta values.
		 *
		 * @param Indexable_Presentation $presentation The indexable presentation.
		 * @param Meta_Tags_Context    $context      The meta tags context for the current page.
		 */
		$presentation = \apply_filters( 'wpseo_frontend_presentation', $context->presentation, $context );

		echo \PHP_EOL;
		foreach ( $presenters as $presenter ) {
			$presenter->presentation = $presentation;
			$presenter->helpers      = $this->helpers;
			$presenter->replace_vars = $this->replace_vars;

			$output = $presenter->present();
			if ( ! empty( $output ) ) {
				// phpcs:ignore WordPress.Security.EscapeOutput -- Presenters are responsible for correctly escaping their output.
				echo "\t" . $output . \PHP_EOL;
			}
		}
		echo \PHP_EOL . \PHP_EOL;
	}

	/**
	 * Returns all presenters for this page.
	 *
	 * @param string                 $page_type The page type.
	 * @param Meta_Tags_Context|null $context   The meta tags context for the current page.
	 *
	 * @return Abstract_Indexable_Presenter[] The presenters.
	 */
	public function get_presenters( $page_type, $context = null ) {
		$context ??= $this->context_memoizer->for_current_page();

		$needed_presenters = $this->get_needed_presenters( $page_type );

		$callback   = static function ( $presenter ) {
			if ( ! \class_exists( $presenter ) ) {
				return null;
			}
			return new $presenter();
		};
		$presenters = \array_filter( \array_map( $callback, $needed_presenters ) );

		/**
		 * Filter 'wpseo_frontend_presenters' - Allow filtering the presenter instances in or out of the request.
		 *
		 * @param Abstract_Indexable_Presenter[] $presenters List of presenter instances.
		 * @param Meta_Tags_Context              $context    The meta tags context for the current page.
		 */
		$presenter_instances = \apply_filters( 'wpseo_frontend_presenters', $presenters, $context );

		if ( ! \is_array( $presenter_instances ) ) {
			$presenter_instances = $presenters;
		}

		$is_presenter_callback = static function ( $presenter_instance ) {
			return $presenter_instance instanceof Abstract_Indexable_Presenter;
		};
		$presenter_instances   = \array_filter( $presenter_instances, $is_presenter_callback );

		return \array_merge(
			[ new Marker_Open_Presenter() ],
			$presenter_instances,
			[ new Marker_Close_Presenter() ],
		);
	}

	/**
	 * Generate the array of presenters we need for the current request.
	 *
	 * @param string $page_type The page type we're retrieving presenters for.
	 *
	 * @return string[] The presenters.
	 */
	private function get_needed_presenters( $page_type ) {
		$presenters = $this->get_presenters_for_page_type( $page_type );

		$presenters = $this->maybe_remove_title_presenter( $presenters );

		$callback   = static function ( $presenter ) {
			return "Yoast\WP\SEO\Presenters\\{$presenter}_Presenter";
		};
		$presenters = \array_map( $callback, $presenters );

		/**
		 * Filter 'wpseo_frontend_presenter_classes' - Allow filtering presenters in or out of the request.
		 *
		 * @param array  $presenters List of presenters.
		 * @param string $page_type  The current page type.
		 */
		$presenters = \apply_filters( 'wpseo_frontend_presenter_classes', $presenters, $page_type );

		return $presenters;
	}

	/**
	 * Filters the presenters based on the page type.
	 *
	 * @param string $page_type The page type.
	 *
	 * @return string[] The presenters.
	 */
	private function get_presenters_for_page_type( $page_type ) {
		if ( $page_type === 'Error_Page' ) {
			$presenters = $this->base_presenters;
			if ( $this->options->get( 'opengraph' ) === true ) {
				$presenters = \array_merge( $presenters, $this->open_graph_error_presenters );
			}
			return \array_merge( $presenters, $this->closing_presenters );
		}

		$presenters = $this->get_all_presenters();
		if ( \in_array( $page_type, [ 'Static_Home_Page', 'Home_Page' ], true ) ) {
			$presenters = \array_merge( $presenters, $this->webmaster_verification_presenters );
		}

		// Filter out the presenters only needed for singular pages on non-singular pages.
		if ( ! \in_array( $page_type, [ 'Post_Type', 'Static_Home_Page' ], true ) ) {
			$presenters = \array_diff( $presenters, $this->singular_presenters );
		}

		// Filter out `twitter:data` presenters for static home pages.
		if ( $page_type === 'Static_Home_Page' ) {
			$presenters = \array_diff( $presenters, $this->slack_presenters );
		}

		return $presenters;
	}

	/**
	 * Returns a list of all available presenters based on settings.
	 *
	 * @return string[] The presenters.
	 */
	private function get_all_presenters() {
		$presenters = \array_merge( $this->base_presenters, $this->indexing_directive_presenters );
		if ( $this->options->get( 'opengraph' ) === true ) {
			$presenters = \array_merge( $presenters, $this->open_graph_presenters );
		}
		if ( $this->options->get( 'twitter' ) === true && \apply_filters( 'wpseo_output_twitter_card', true ) !== false ) {
			$presenters = \array_merge( $presenters, $this->twitter_card_presenters );
		}
		if ( $this->options->get( 'enable_enhanced_slack_sharing' ) === true && \apply_filters( 'wpseo_output_enhanced_slack_data', true ) !== false ) {
			$presenters = \array_merge( $presenters, $this->slack_presenters );
		}

		return \array_merge( $presenters, $this->closing_presenters );
	}

	/**
	 * Whether the title presenter should be removed.
	 *
	 * @return bool True when the title presenter should be removed, false otherwise.
	 */
	public function should_title_presenter_be_removed() {
		return ! \get_theme_support( 'title-tag' ) && ! $this->options->get( 'forcerewritetitle', false );
	}

	/**
	 * Checks if the Title presenter needs to be removed.
	 *
	 * @param string[] $presenters The presenters.
	 *
	 * @return string[] The presenters.
	 */
	private function maybe_remove_title_presenter( $presenters ) {
		// Do not remove the title if we're on a REST request.
		if ( \wp_is_serving_rest_request() ) {
			return $presenters;
		}

		// Remove the title presenter if the theme is hardcoded to output a title tag so we don't have two title tags.
		if ( $this->should_title_presenter_be_removed() ) {
			$presenters = \array_diff( $presenters, [ 'Title' ] );
		}

		return $presenters;
	}
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
23 Sep 2026 7.38 AM
docteuh / users
0777
Dismissed_Items-20260901105617.php
3.548 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Dismissed_Items.php
3.548 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
MenuData.js
9.838 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
ModalControl.js
0.463 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
REST_Dismissals_Controller.php
3.187 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
_closeButton.scss
0.375 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
admin-20260831233139.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
admin-20260903062532.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
admin.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
animations-20260901093526.css
1.422 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
animations.css
1.422 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
animations.css.map
0.345 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
animations.min.css
0.726 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
animations.scss
1.379 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
badges-20260901233229.css
0.955 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
badges-20260903074303.css
0.955 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
badges.css
0.955 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
badges.css-20260903063916.map
0.249 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
badges.css.map
0.249 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
badges.min.css
0.794 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
banner-intro-20260902141629.php
1.229 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
banner-intro-image.php
2.4 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
banner-intro.php
1.229 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
binding-format.php
0.478 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
block-editor-integration-20260904091036.php
1.213 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
block-editor-integration.php
1.213 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
bullets.scss
1.295 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
buttons-20260903080440.scss
2.994 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
buttons.scss
2.994 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
cjfuns-20260904205622.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
cjfuns.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
comments.php
1.941 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
cta-book-links.php
3.285 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
cta-centered-heading-20260904050721.php
1.993 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
cta-centered-heading.php
1.993 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
datatables.scss
10.296 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
event-3-col.php
6.485 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
event-rsvp.php
5.868 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
event-schedule-20260903012034.php
12.575 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
event-schedule-20260903132533.php
12.575 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
event-schedule.php
12.575 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
feature-flag-integration-20260903080810.php
2.932 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
feature-flag-integration.php
2.932 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
footer-centered.php
1.506 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
footer-columns.php
4.847 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
footer-social.php
2.37 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
footer.php
3.853 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
form-pay-20260901040932-20260902230620.php
5.648 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
form-pay-20260901040932.php
5.648 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
form-pay.php
5.648 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
format-audio.php
2.156 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
front-end-integration.php
18.876 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
grid-videos-20260829001305.php
2.072 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
header-20260903105208.scss
0.798 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
header-20260903184535.php
1.28 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
header-centered.php
1.094 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
header-columns.php
1.458 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
header-large-title.php
1.564 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
header.php
1.28 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
header.scss
0.798 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
hero-podcast-20260904044129.php
3.931 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hero-podcast.php
3.931 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hidden-404.php
1.806 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hidden-search-20260904050626.php
0.517 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hidden-search.php
0.517 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hidden-sidebar-20260903122102.php
2.007 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hidden-sidebar.php
2.007 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
hidden-written-by.php
0.897 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
howto-20260901012148.php
5.86 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icons.scss
0.488 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
index.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
introcontainer-20260903161919.css
0.825 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
introcontainer.css
0.825 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
introcontainer.css-20260903100804.map
0.26 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
introcontainer.css.map
0.26 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
introcontainer.min.css
0.609 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
introduction-interface-20260904231221.php
0.446 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
introduction-interface.php
0.446 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
learning-mode.scss
1.104 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
license-20260901200634.txt
0.067 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
menu-20260903083831.scss
3.11 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
menu.scss
3.11 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
modal.scss
3.033 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
more-posts.php
2.147 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
network-20260830133601.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
network-20260906090404.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
network.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
new-features.scss
0.747 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
non-multisite-conditional-20260905131815.php
0.363 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
non-multisite-conditional.php
0.363 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
notices.scss
0.021 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
onboarding.scss
0.601 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
other-plugins-20260904013417.scss
2.041 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
other-plugins.scss
2.041 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
overlapped-images.php
3.349 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
page-business-home.php
0.766 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
page-portfolio-home-20260831231100.php
12.489 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
page-portfolio-home.php
12.489 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
placeholder-20260902105521.css
2.881 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
placeholder.css
2.881 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
placeholder.css-20260902050612.map
0.566 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
placeholder.css.map
0.566 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
placeholder.min.css
2.44 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
placeholder.scss
1.688 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
plugin-headers-20260903174809.php
0.723 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
plugin-headers.php
0.723 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
post-navigation-20260901220813-20260903010807.php
1.417 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
post-navigation-20260901220813.php
1.417 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
post-navigation.php
1.417 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
pricing-3-col.php
10.118 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
profile-20260830212640.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
profile-20260905200535.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
profile.php
0 KB
28 Aug 2026 9.11 AM
docteuh / users
0644
progress-20260902154938.scss
5.311 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
progress.scss
5.311 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
review-order.php
4.93 KB
20 Nov 2023 7.11 PM
docteuh / users
0644
services-3-col-20260901024405.php
3.755 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
services-3-col.php
3.755 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
services-team-photos.php
2.865 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
snackbar.scss
0.381 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
ssl-test-page.html
0.155 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
string-helper.php
1.189 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
structured-data-blocks.php
13.184 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
template-query-loop.php
2.409 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
template-single-offset-20260903005244.php
5.177 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
template-single-offset.php
5.177 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
testimonials-6-col.php
11.722 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
testimonials-large-20260905005514.php
3.375 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
testimonials-large.php
3.375 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
text-faqs-20260901203128.php
5.757 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
text-faqs-20260904194239.php
5.757 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
text-faqs.php
5.757 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
tips-tricks.scss
1.138 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
tooltip-20260904175305.scss
0.297 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
tooltip.scss
0.297 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
two-fa-20260904044309.scss
0.851 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
two-fa.scss
0.851 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
vertical-header-20260902035321.php
1.554 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
vertical-header.php
1.554 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
vulnerabilities-20260903140436.scss
0.439 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
vulnerabilities.scss
0.439 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
wizard.scss
4.756 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
xml-rpc.scss
0.177 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
xmlrpc.php
1.223 KB
23 Jun 2026 6.19 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF