File "class-video-metabox.php"

Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/seo-by-rank-math-pro/includes/modules/video-sitemap/class-video-metabox.php
File size: 1.14 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * The Video Sitemap Metabox.
 *
 * @since      1.0.0
 * @package    RankMath
 * @subpackage RankMathPro
 * @author     RankMath <support@rankmath.com>
 */

namespace RankMathPro\Sitemap;

use RankMath\Helper;
use RankMath\Traits\Hooker;
use RankMath\Sitemap\Cache_Watcher;

defined( 'ABSPATH' ) || exit;

/**
 * Video_Metabox class.
 */
class Video_Metabox {

	use Hooker;

	/**
	 * The Constructor.
	 */
	public function __construct() {
		$this->action( 'save_post', 'save_post' );
	}

	/**
	 * Check for relevant post type before invalidation.
	 *
	 * @param int $post_id Post ID to possibly invalidate for.
	 */
	public function save_post( $post_id ) {
		if (
			! $this->can_add_tab( get_post_type( $post_id ) ) ||
			false === Helper::is_post_indexable( $post_id ) ||
			wp_is_post_revision( $post_id )
		) {
			return false;
		}

		Cache_Watcher::invalidate( 'video' );
	}

	/**
	 * Show field check callback.
	 *
	 * @param string $post_type Post type.
	 *
	 * @return boolean
	 */
	private function can_add_tab( $post_type ) {
		return in_array(
			$post_type,
			(array) Helper::get_settings( 'sitemap.video_sitemap_post_type' ),
			true
		);
	}
}