Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/import-tool-selected-conditional.php.tar

www/wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php000064400000001050151137013770031334 0ustar00home/xbodynamge<?php

namespace Yoast\WP\SEO\Conditionals;

/**
 * Conditional that is only met when current page is not a specific tool's page.
 */
class Import_Tool_Selected_Conditional implements Conditional {

	/**
	 * Returns whether or not this conditional is met.
	 *
	 * @return bool Whether or not the conditional is met.
	 */
	public function is_met() {
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- We just check whether a URL parameter does not exist.
		return ( isset( $_GET['tool'] ) && $_GET['tool'] === 'import-export' );
	}
}
lebauwcentre/wp-content/plugins/wordpress-seo/src/conditionals/import-tool-selected-conditional.php000064400000001050151144116210033157 0ustar00home/xbodynamge<?php

namespace Yoast\WP\SEO\Conditionals;

/**
 * Conditional that is only met when current page is not a specific tool's page.
 */
class Import_Tool_Selected_Conditional implements Conditional {

	/**
	 * Returns whether or not this conditional is met.
	 *
	 * @return bool Whether or not the conditional is met.
	 */
	public function is_met() {
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- We just check whether a URL parameter does not exist.
		return ( isset( $_GET['tool'] ) && $_GET['tool'] === 'import-export' );
	}
}