%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/pn/wp-content/plugins/autodescription/inc/classes/bridges/
Upload File :
Create Path :
Current File : //var/www/pn/wp-content/plugins/autodescription/inc/classes/bridges/postsettings.class.php

<?php
/**
 * @package The_SEO_Framework\Classes\Bridges\PostSettings
 * @subpackage The_SEO_Framework\Admin\Edit\Post
 */

namespace The_SEO_Framework\Bridges;

/**
 * The SEO Framework plugin
 * Copyright (C) 2019 - 2021 Sybre Waaijer, CyberWire B.V. (https://cyberwire.nl/)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as published
 * by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

\defined( 'THE_SEO_FRAMEWORK_PRESENT' ) or die;

/**
 * Prepares the Post Settings meta box interface.
 *
 * TODO carry over what we implemented in TSFEM, and make that the standard.
 *
 * @since 4.0.0
 * @access protected
 * @internal
 * @final Can't be extended.
 */
final class PostSettings {

	/**
	 * Registers the meta box for the Post edit screens.
	 *
	 * @since 4.0.0
	 * @since 4.0.5 Now registers custom postbox classes.
	 * @access private
	 *
	 * @param string $post_type The current Post Type.
	 */
	public static function _prepare_meta_box( $post_type ) {

		$tsf = \tsf();

		$label = $tsf->get_post_type_label( $post_type );

		/**
		 * @since 2.9.0
		 * @param string $context Accepts 'normal', 'side', and 'advanced'.
		 */
		$context = (string) \apply_filters( 'the_seo_framework_metabox_context', 'normal' );

		/**
		 * @since 2.6.0
		 * @param string $default Accepts 'high', 'default', 'low'
		 *                        Defaults to high, this box is seen right below the post/page edit screen.
		 */
		$priority = (string) \apply_filters( 'the_seo_framework_metabox_priority', 'high' );

		if ( $tsf->is_real_front_page_by_id( $tsf->get_the_real_ID() ) ) {
			if ( $tsf->can_access_settings() ) {
				$schema = \is_rtl() ? '%2$s - %1$s' : '%1$s - %2$s';
				$title  = sprintf(
					$schema,
					\esc_html__( 'Homepage SEO Settings', 'autodescription' ),
					\The_SEO_Framework\Interpreters\HTML::make_info(
						\__( 'The SEO Settings may take precedence over these settings.', 'autodescription' ),
						$tsf->get_seo_settings_page_url(),
						false
					)
				);
			} else {
				$title = \esc_html__( 'Homepage SEO Settings', 'autodescription' );
			}
		} else {
			/* translators: %s = Post Type label */
			$title = sprintf( \esc_html__( '%s SEO Settings', 'autodescription' ), $label );
		}

		$box_id = 'tsf-inpost-box';
		// Implies `\get_current_screen()->id`. Is always 'post'.
		$screen_id = 'post';

		$class = static::class;

		\add_meta_box( $box_id, $title, "$class::_meta_box", $post_type, $context, $priority, [] );
		\add_filter( "postbox_classes_{$screen_id}_{$box_id}", "$class::_add_postbox_class" );
	}

	/**
	 * Setting nav tab wrappers.
	 * Outputs Tabs and settings content.
	 *
	 * @since 4.0.0
	 * @access private
	 *
	 * @param string $id      The nav-tab ID.
	 * @param array  $tabs    The tab content {
	 *    string tab ID => array : {
	 *       string   name     : Tab name.
	 *       callable callback : Output function.
	 *       string   dashicon : The dashicon to use.
	 *       mixed    args     : Optional callback function args.
	 *    }
	 * }
	 * @param bool   $use_tabs Whether to output tabs, only works when $tabs count is greater than 1.
	 */
	public static function _flex_nav_tab_wrapper( $id, $tabs = [], $use_tabs = true ) { // phpcs:ignore,VariableAnalysis
		\tsf()->get_view( 'edit/wrap-nav', get_defined_vars() );
		\tsf()->get_view( 'edit/wrap-content', get_defined_vars() );
	}

	/**
	 * Outputs the meta box.
	 *
	 * @since 4.0.0
	 */
	public static function _meta_box() {

		static::output_nonce_field();

		$tsf = \tsf();

		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pre_page_inpost_box' );

		$tsf->is_gutenberg_page()
			and $tsf->get_view( 'edit/seo-settings-singular-gutenberg-data' );
		$tsf->get_view( 'edit/seo-settings-singular' );

		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pro_page_inpost_box' );
	}

	/**
	 * Adds a Gutenberg/Block-editor box class.
	 *
	 * @since 4.0.5
	 * @access private
	 *
	 * @param array $classes The registered postbox classes.
	 * @return array
	 */
	public static function _add_postbox_class( $classes = [] ) {

		if ( \tsf()->is_gutenberg_page() )
			$classes[] = 'tsf-is-block-editor';

		return $classes;
	}

	/**
	 * Outputs nonce fields for the post settings.
	 * Redundant, but added for sanity.
	 *
	 * @since 4.0.0
	 */
	private static function output_nonce_field() {
		$tsf = \tsf();
		\wp_nonce_field( $tsf->inpost_nonce_field, $tsf->inpost_nonce_name );
	}

	/**
	 * Outputs the Post SEO box general tab.
	 *
	 * @since 4.0.0
	 */
	public static function _general_tab() {
		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pre_page_inpost_general_tab' );
		\tsf()->get_view( 'edit/seo-settings-singular', [], 'general_tab' );
		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pro_page_inpost_general_tab' );
	}

	/**
	 * Outputs the Post SEO box visibility tab.
	 *
	 * @since 4.0.0
	 */
	public static function _visibility_tab() {
		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pre_page_inpost_visibility_tab' );
		\tsf()->get_view( 'edit/seo-settings-singular', [], 'visibility_tab' );
		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pro_page_inpost_visibility_tab' );
	}

	/**
	 * Outputs the Post SEO box social tab.
	 *
	 * @since 4.0.0
	 */
	public static function _social_tab() {
		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pre_page_inpost_social_tab' );
		\tsf()->get_view( 'edit/seo-settings-singular', [], 'social_tab' );
		/**
		 * @since 2.9.0
		 */
		\do_action( 'the_seo_framework_pro_page_inpost_social_tab' );
	}
}

Zerion Mini Shell 1.0