Yoast\WP\SEO\Llms_Txt\Infrastructure\Markdown_Services

Content_Types_Collector{}Yoast 1.0

The collector of content types.

Хуки из класса

Использование

$Content_Types_Collector = new Content_Types_Collector();
// use class methods

Методы

  1. public __construct(
  2. public get_content_types_lists()
  3. ERROR: no method name found on line ``
  4. ERROR: no method name found on line `* The options helper.`
  5. private make_sure_pages_are_first( array $post_types )

Код Content_Types_Collector{} Yoast 26.5

class Content_Types_Collector {

	/**
	 * The post type helper.
	 *
	 * @var Post_Type_Helper
	 */
	private $post_type_helper;

	/**
	 * The collection factory.
	 *
	 * @var Post_Collection_Factory
	 */
	private $collection_factory;

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

	/**
	 * The constructor.
	 *
	 * @param Post_Type_Helper        $post_type_helper   The post type helper.
	 * @param Post_Collection_Factory $collection_factory The collection factory.
	 * @param Options_Helper          $options_helper     The options helper.
	 */
	public function __construct(
		Post_Type_Helper $post_type_helper,
		Post_Collection_Factory $collection_factory,
		Options_Helper $options_helper
	) {
		$this->post_type_helper   = $post_type_helper;
		$this->collection_factory = $collection_factory;
		$this->options_helper     = $options_helper;
	}

	/**
	 * Returns the content types in a link list.
	 *
	 * @return Link_List[] The content types in a link list.
	 */
	public function get_content_types_lists(): array {
		$post_types = $this->post_type_helper->get_indexable_post_type_objects();
		$post_types = $this->make_sure_pages_are_first( $post_types );
		$link_list  = [];

		foreach ( $post_types as $post_type_object ) {
			if ( $this->post_type_helper->is_indexable( $post_type_object->name ) === false ) {
				continue;
			}

			$option = 'auto';
			if ( $post_type_object->name === 'page' ) {
				$option = $this->options_helper->get( 'llms_txt_selection_mode' );
			}
			$collection_strategy = $this->collection_factory->get_post_collection( $option );
			$posts               = $collection_strategy->get_posts( $post_type_object->name, 5 );
			$post_links          = new Link_List( $post_type_object->label, [] );
			foreach ( $posts as $post ) {
				/**
				 * Filter 'wpseo_llmstxt_link_description' - Allow filtering the description of links in the llms.txt post lists.
				 *
				 * @since 26.3
				 *
				 * @param string $link_description The description of the link.
				 * @param string $post_id          The ID of the post that is being added as a link.
				 * @param string $post_type        The post type of the post that is being added as a link.
				 */
				$link_description = \apply_filters( 'wpseo_llmstxt_link_description', $post->get_description(), $post->get_id(), $post_type_object->name );

				$post_link = new Link( $post->get_title(), $post->get_url(), $link_description );
				$post_links->add_link( $post_link );
			}

			$link_list[] = $post_links;
		}

		return $link_list;
	}

	/**
	 * Returns an array of indexable post types with pages and posts as the first two.
	 *
	 * @param array<WP_Post_Type> $post_types List of indexable post type objects.
	 *
	 * @return array<WP_Post_Type> List of indexable post type objects.
	 */
	private function make_sure_pages_are_first( array $post_types ): array {
		$types_to_go_first = [];
		if ( isset( $post_types['page'] ) ) {
			$types_to_go_first['page'] = $post_types['page'];
			unset( $post_types['page'] );
		}
		return \array_merge( $types_to_go_first, $post_types );
	}
}