✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/wordpress-seo/src/helpers//indexable-helper.php
<?php

namespace Yoast\WP\SEO\Helpers;

use Yoast\WP\SEO\Actions\Indexing\Indexable_Post_Indexation_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexable_Post_Type_Archive_Indexation_Action;
use Yoast\WP\SEO\Actions\Indexing\Indexable_Term_Indexation_Action;
use Yoast\WP\SEO\Config\Indexing_Reasons;
use Yoast\WP\SEO\Models\Indexable;
use Yoast\WP\SEO\Repositories\Indexable_Repository;

/**
 * A helper object for indexables.
 */
class Indexable_Helper {

	/**
	 * Represents the indexable repository.
	 *
	 * @var Indexable_Repository
	 */
	protected $repository;

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

	/**
	 * Represents the environment helper.
	 *
	 * @var Environment_Helper
	 */
	protected $environment_helper;

	/**
	 * Represents the indexing helper.
	 *
	 * @var Indexing_Helper
	 */
	protected $indexing_helper;

	/**
	 * Default values of certain columns.
	 *
	 * @var array
	 */
	protected $default_values = [
		'title'                  => [
			'default_value'   => null,
		],
		'description'            => [
			'default_value'   => null,
		],
		'open_graph_title'       => [
			'default_value'   => null,
		],
		'open_graph_description' => [
			'default_value'   => null,
		],
		'twitter_title'          => [
			'default_value'   => null,
		],
		'twitter_description'    => [
			'default_value'   => null,
		],
		'canonical'              => [
			'default_value'   => null,
		],
		'primary_focus_keyword'  => [
			'default_value'   => null,
		],
		'is_robots_noindex'      => [
			'default_value'   => null,
		],
		'is_robots_nofollow'     => [
			'default_value'   => false,
		],
		'is_robots_noarchive'    => [
			'default_value'   => null,
		],
		'is_robots_noimageindex' => [
			'default_value'   => null,
		],
		'is_robots_nosnippet'    => [
			'default_value'   => null,
		],
	];

	/**
	 * Indexable_Helper constructor.
	 *
	 * @param Options_Helper     $options_helper     The options helper.
	 * @param Environment_Helper $environment_helper The environment helper.
	 * @param Indexing_Helper    $indexing_helper    The indexing helper.
	 */
	public function __construct( Options_Helper $options_helper, Environment_Helper $environment_helper, Indexing_Helper $indexing_helper ) {
		$this->options_helper     = $options_helper;
		$this->environment_helper = $environment_helper;
		$this->indexing_helper    = $indexing_helper;
	}

	/**
	 * Sets the indexable repository. Done to avoid circular dependencies.
	 *
	 * @required
	 *
	 * @param Indexable_Repository $repository The indexable repository.
	 *
	 * @return void
	 */
	public function set_indexable_repository( Indexable_Repository $repository ) {
		$this->repository = $repository;
	}

	/**
	 * Returns the page type of an indexable.
	 *
	 * @param Indexable $indexable The indexable.
	 *
	 * @return string|false The page type. False if it could not be determined.
	 */
	public function get_page_type_for_indexable( $indexable ) {
		switch ( $indexable->object_type ) {
			case 'post':
				$front_page_id = (int) \get_option( 'page_on_front' );
				if ( $indexable->object_id === $front_page_id ) {
					return 'Static_Home_Page';
				}
				$posts_page_id = (int) \get_option( 'page_for_posts' );
				if ( $indexable->object_id === $posts_page_id ) {
					return 'Static_Posts_Page';
				}

				return 'Post_Type';
			case 'term':
				return 'Term_Archive';
			case 'user':
				return 'Author_Archive';
			case 'home-page':
				return 'Home_Page';
			case 'post-type-archive':
				return 'Post_Type_Archive';
			case 'date-archive':
				return 'Date_Archive';
			case 'system-page':
				if ( $indexable->object_sub_type === 'search-result' ) {
					return 'Search_Result_Page';
				}
				if ( $indexable->object_sub_type === '404' ) {
					return 'Error_Page';
				}
		}

		return false;
	}

	/**
	 * Resets the permalinks of the indexables.
	 *
	 * @param string|null $type    The type of the indexable.
	 * @param string|null $subtype The subtype. Can be null.
	 * @param string      $reason  The reason that the permalink has been changed.
	 *
	 * @return void
	 */
	public function reset_permalink_indexables( $type = null, $subtype = null, $reason = Indexing_Reasons::REASON_PERMALINK_SETTINGS ) {
		$result = $this->repository->reset_permalink( $type, $subtype );

		$this->indexing_helper->set_reason( $reason );

		if ( $result !== false && $result > 0 ) {
			\delete_transient( Indexable_Post_Indexation_Action::UNINDEXED_COUNT_TRANSIENT );
			\delete_transient( Indexable_Post_Type_Archive_Indexation_Action::UNINDEXED_COUNT_TRANSIENT );
			\delete_transient( Indexable_Term_Indexation_Action::UNINDEXED_COUNT_TRANSIENT );
		}
	}

	/**
	 * Determines whether indexing the specific indexable is appropriate at this time.
	 *
	 * @param Indexable $indexable The indexable.
	 *
	 * @return bool Whether indexing the specific indexable is appropriate at this time.
	 */
	public function should_index_indexable( $indexable ) {
		$intend_to_save = $this->should_index_indexables();

		/**
		 * Filter: 'wpseo_should_save_indexable' - Allow developers to enable / disable
		 * saving the indexable when the indexable is updated. Warning: overriding
		 * the intended action may cause problems when moving from a staging to a
		 * production environment because indexable permalinks may get set incorrectly.
		 *
		 * @param bool      $intend_to_save True if YoastSEO intends to save the indexable.
		 * @param Indexable $indexable      The indexable to be saved.
		 */
		return \apply_filters( 'wpseo_should_save_indexable', $intend_to_save, $indexable );
	}

	/**
	 * Determines whether indexing indexables is appropriate at this time.
	 *
	 * @return bool Whether the indexables should be indexed.
	 */
	public function should_index_indexables() {
		// Currently, the only reason to index is when we're on a production website.
		$should_index = $this->environment_helper->is_production_mode();

		/**
		 * Filter: 'Yoast\WP\SEO\should_index_indexables' - Allow developers to enable / disable
		 * creating indexables. Warning: overriding
		 * the intended action may cause problems when moving from a staging to a
		 * production environment because indexable permalinks may get set incorrectly.
		 *
		 * @since 18.2
		 *
		 * @param bool $should_index Whether the site's indexables should be created.
		 */
		return (bool) \apply_filters( 'Yoast\WP\SEO\should_index_indexables', $should_index );
	}

	/**
	 * Returns whether or not dynamic permalinks should be used.
	 *
	 * @return bool Whether or not the dynamic permalinks should be used.
	 */
	public function dynamic_permalinks_enabled() {
		/**
		 * Filters the value of the `dynamic_permalinks` option.
		 *
		 * @param bool $value The value of the `dynamic_permalinks` option.
		 */
		return (bool) \apply_filters( 'wpseo_dynamic_permalinks_enabled', $this->options_helper->get( 'dynamic_permalinks', false ) );
	}

	/**
	 * Sets a boolean to indicate that the indexing of the indexables has completed.
	 *
	 * @return void
	 */
	public function finish_indexing() {
		$this->options_helper->set( 'indexables_indexing_completed', true );
	}

	/**
	 * Checks whether the indexable has default values in given fields.
	 *
	 * @param Indexable $indexable The Yoast indexable that we're checking.
	 * @param array     $fields    The Yoast indexable fields that we're checking against.
	 *
	 * @return bool Whether the indexable has default values.
	 */
	public function check_if_default_indexable( $indexable, $fields ) {
		foreach ( $fields as $field ) {
			$is_default = $this->check_if_default_field( $indexable, $field );
			if ( ! $is_default ) {
				break;
			}
		}

		return $is_default;
	}

	/**
	 * Checks if an indexable field contains the default value.
	 *
	 * @param Indexable $indexable The Yoast indexable that we're checking.
	 * @param string    $field     The field that we're checking.
	 *
	 * @return bool True if default value.
	 */
	public function check_if_default_field( $indexable, $field ) {
		$defaults = $this->default_values;
		if ( ! isset( $defaults[ $field ] ) ) {
			return false;
		}

		if ( $indexable->$field === $defaults[ $field ]['default_value'] ) {
			return true;
		}

		return false;
	}

	/**
	 * Saves and returns an indexable (on production environments only).
	 *
	 * Moved from Yoast\WP\SEO\Builders\Indexable_Builder.
	 *
	 * @param Indexable      $indexable        The indexable.
	 * @param Indexable|null $indexable_before The indexable before possible changes.
	 *
	 * @return bool True if default value.
	 */
	public function save_indexable( $indexable, $indexable_before = null ) {
		if ( ! $this->should_index_indexable( $indexable ) ) {
			return $indexable;
		}

		// Save the indexable before running the WordPress hook.
		$indexable->save();

		if ( $indexable_before ) {
			/**
			 * Action: 'wpseo_save_indexable' - Allow developers to perform an action
			 * when the indexable is updated.
			 *
			 * @param Indexable $indexable        The saved indexable.
			 * @param Indexable $indexable_before The indexable before saving.
			 */
			\do_action( 'wpseo_save_indexable', $indexable, $indexable_before );
		}

		/**
		 * Action: 'wpseo_save_indexable' - Allow developers to perform an action
		 * right after the indexable is created or updated.
		 *
		 * @param Indexable $indexable The saved indexable.
		 */
		\do_action( 'wpseo_saved_indexable', $indexable );

		return $indexable;
	}
}


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
open-graph
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
schema
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
twitter
--
9 Jun 2026 8.39 AM
builxejc / builxejc
0755
aioseo-helper.php
1.236 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
asset-helper.php
2.512 KB
5 Mar 2024 5.08 PM
builxejc / builxejc
0644
attachment-cleanup-helper.php
2.24 KB
7 Feb 2023 2.53 PM
builxejc / builxejc
0644
author-archive-helper.php
5.249 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
blocks-helper.php
2.322 KB
29 Nov 2022 7.15 PM
builxejc / builxejc
0644
capability-helper.php
2.066 KB
1 Sep 2020 4.27 PM
builxejc / builxejc
0644
crawl-cleanup-helper.php
8.1 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
curl-helper.php
0.64 KB
1 Sep 2022 10.45 AM
builxejc / builxejc
0644
current-page-helper.php
15.633 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
date-helper.php
3.133 KB
21 Dec 2021 3.29 PM
builxejc / builxejc
0644
environment-helper.php
0.774 KB
29 Nov 2022 7.15 PM
builxejc / builxejc
0644
first-time-configuration-notice-helper.php
5.357 KB
2 Dec 2025 6.31 PM
builxejc / builxejc
0644
home-url-helper.php
0.665 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
image-helper.php
11.691 KB
24 Sep 2024 1.30 PM
builxejc / builxejc
0644
import-cursor-helper.php
1.359 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
import-helper.php
0.699 KB
5 Apr 2022 5.50 PM
builxejc / builxejc
0644
indexable-helper.php
9.237 KB
8 Oct 2025 6.12 PM
builxejc / builxejc
0644
indexable-to-postmeta-helper.php
6.751 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
indexing-helper.php
12.688 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
language-helper.php
2.652 KB
10 Jan 2023 5.05 PM
builxejc / builxejc
0644
lock-helper.php
2.84 KB
12 May 2026 4.03 PM
builxejc / builxejc
0644
meta-helper.php
2.912 KB
25 Jan 2022 3.16 PM
builxejc / builxejc
0644
notification-helper.php
2.009 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
options-helper.php
4.646 KB
7 Jan 2026 4.32 PM
builxejc / builxejc
0644
pagination-helper.php
5.679 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
permalink-helper.php
1.603 KB
4 Feb 2026 7.42 PM
builxejc / builxejc
0644
post-helper.php
5.423 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
post-type-helper.php
7.178 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
primary-term-helper.php
1.365 KB
19 Jan 2024 3.31 PM
builxejc / builxejc
0644
product-helper.php
1.077 KB
8 Aug 2023 4.52 PM
builxejc / builxejc
0644
redirect-helper.php
1.727 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
require-file-helper.php
0.318 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
robots-helper.php
1.735 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
robots-txt-helper.php
3.396 KB
14 Apr 2026 2.10 PM
builxejc / builxejc
0644
route-helper.php
0.678 KB
2 Dec 2025 6.31 PM
builxejc / builxejc
0644
sanitization-helper.php
1.031 KB
25 Jan 2022 3.16 PM
builxejc / builxejc
0644
score-icon-helper.php
2.779 KB
9 May 2023 1.01 PM
builxejc / builxejc
0644
short-link-helper.php
3.522 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644
site-helper.php
0.553 KB
22 Mar 2021 5.43 PM
builxejc / builxejc
0644
social-profiles-helper.php
10.733 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
string-helper.php
1.189 KB
25 Jan 2022 3.16 PM
builxejc / builxejc
0644
taxonomy-helper.php
4.98 KB
24 Jan 2023 3.07 PM
builxejc / builxejc
0644
url-helper.php
8.129 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
user-helper.php
3.932 KB
3 Dec 2024 4.05 PM
builxejc / builxejc
0644
wincher-helper.php
2.509 KB
13 Jun 2023 2.02 PM
builxejc / builxejc
0644
woocommerce-helper.php
1.271 KB
17 Feb 2026 5.17 PM
builxejc / builxejc
0644
wordpress-helper.php
0.5 KB
7 Jul 2021 6.45 PM
builxejc / builxejc
0644
wpdb-helper.php
0.915 KB
7 Apr 2025 1.46 PM
builxejc / builxejc
0644

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