✘✘ 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/package-cache-session/options//class-wpseo-option-llmstxt.php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Internals\Options
 */

/**
 * Option: wpseo_llmstxt.
 */
class WPSEO_Option_Llmstxt extends WPSEO_Option {

	private const OTHER_INCLUDED_PAGES_LIMIT = 100;

	/**
	 * Option name.
	 *
	 * @var string
	 */
	public $option_name = 'wpseo_llmstxt';

	/**
	 * Array of defaults for the option.
	 *
	 * Shouldn't be requested directly, use $this->get_defaults();
	 *
	 * @var array<string, int|string|array<int>>
	 */
	protected $defaults = [
		'llms_txt_selection_mode' => 'auto',
		'about_us_page'           => 0,
		'contact_page'            => 0,
		'terms_page'              => 0,
		'privacy_policy_page'     => 0,
		'shop_page'               => 0,
		'other_included_pages'    => [],
	];

	/**
	 * Get the singleton instance of this class.
	 *
	 * @return object
	 */
	public static function get_instance() {
		if ( ! ( self::$instance instanceof self ) ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * All concrete classes must contain a validate_option() method which validates all
	 * values within the option.
	 *
	 * @param array $dirty New value for the option.
	 * @param array $clean Clean value for the option, normally the defaults.
	 * @param array $old   Old value of the option.
	 *
	 * @return array The clean option with the saved value.
	 */
	protected function validate_option( $dirty, $clean, $old ) {

		foreach ( $clean as $key => $value ) {
			switch ( $key ) {
				case 'other_included_pages':
					if ( isset( $dirty[ $key ] ) ) {
						$items = $dirty[ $key ];
						if ( ! is_array( $items ) ) {
							$items = json_decode( $dirty[ $key ], true );
						}

						if ( is_array( $items ) ) {
							$items = array_slice( $items, 0, $this->get_other_included_pages_limit() );
							foreach ( $items as $item ) {
								$validated_id = WPSEO_Utils::validate_int( $item );

								if ( $validated_id === false || $validated_id === 0 ) {
									continue;
								}

								$clean[ $key ][] = $validated_id;
							}
						}
					}

					break;
				case 'about_us_page':
				case 'contact_page':
				case 'terms_page':
				case 'privacy_policy_page':
				case 'shop_page':
					if ( isset( $dirty[ $key ] ) ) {
						$int = WPSEO_Utils::validate_int( $dirty[ $key ] );
						if ( $int !== false && $int >= 0 ) {
							$clean[ $key ] = $int;
						}
					}
					elseif ( isset( $old[ $key ] ) ) {
						$int = WPSEO_Utils::validate_int( $old[ $key ] );
						if ( $int !== false && $int >= 0 ) {
							$clean[ $key ] = $int;
						}
					}
					break;
				case 'llms_txt_selection_mode':
					if ( isset( $dirty[ $key ] ) && in_array( $dirty[ $key ], [ 'auto', 'manual' ], true ) ) {
						$clean[ $key ] = $dirty[ $key ];
					}
					break;
			}
		}

		return $clean;
	}

	/**
	 * Gets the limit for the other included pages.
	 *
	 * @return int The limit for the other included pages.
	 */
	public function get_other_included_pages_limit() {
		return self::OTHER_INCLUDED_PAGES_LIMIT;
	}
}


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
22 Sep 2026 11.37 PM
docteuh / users
0755
class-wpseo-option-llmstxt.php
2.931 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-option-ms.php
9.228 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-option-social.php
9.104 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-option-titles.php
34.324 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-option-tracking-only.php
2.285 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-option-wpseo.php
24.876 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-option.php
28.011 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-options.php
17.101 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
class-wpseo-taxonomy-meta.php
17.438 KB
23 Jun 2026 6.19 PM
docteuh / users
0644

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