| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin
- */
- /**
- * Class WPSEO_Premium_Upsell_Admin_Block
- */
- class WPSEO_Premium_Upsell_Admin_Block {
- /** @var string Hook to display the block on. */
- protected $hook;
- /** @var string Identifier to use in the dismissal functionality. */
- protected $identifier = 'premium_upsell_admin_block';
- /**
- * Registers which hook the block will be displayed on.
- *
- * @param string $hook Hook to display the block on.
- */
- public function __construct( $hook ) {
- $this->hook = $hook;
- }
- /**
- * Registers WordPress hooks.
- *
- * @return void
- */
- public function register_hooks() {
- if ( ! $this->is_hidden() ) {
- add_action( $this->hook, array( $this, 'render' ) );
- }
- }
- /**
- * Renders the upsell block.
- *
- * @return void
- */
- public function render() {
- $url = WPSEO_Shortlinker::get( 'https://yoa.st/17h' );
- $arguments = array(
- '<strong>' . esc_html__( 'Multiple keywords', 'wordpress-seo' ) . '</strong>: ' . esc_html__( 'Increase your SEO reach', 'wordpress-seo' ),
- '<strong>' . esc_html__( 'No more dead links', 'wordpress-seo' ) . '</strong>: ' . esc_html__( 'Easy redirect manager', 'wordpress-seo' ),
- '<strong>' . esc_html__( 'Superfast internal linking suggestions', 'wordpress-seo' ) . '</strong>',
- '<strong>' . esc_html__( 'Social media preview', 'wordpress-seo' ) . '</strong>: ' . esc_html__( 'Facebook & Twitter', 'wordpress-seo' ),
- '<strong>' . esc_html__( '24/7 support', 'wordpress-seo' ) . '</strong>',
- '<strong>' . esc_html__( 'No ads!', 'wordpress-seo' ) . '</strong>',
- );
- $arguments_html = implode( '', array_map( array( $this, 'get_argument_html' ), $arguments ) );
- $class = $this->get_html_class();
- /* translators: %s expands to "Yoast SEO Premium". */
- $dismiss_msg = sprintf( __( 'Dismiss %s upgrade motivation', 'wordpress-seo' ), 'Yoast SEO Premium' );
- /* translators: %s expands to "Yoast SEO Premium". */
- $upgrade_msg = sprintf( __( 'Find out why you should upgrade to %s »', 'wordpress-seo' ), 'Yoast SEO Premium' );
- echo '<div class="' . esc_attr( $class ) . '">';
- printf(
- '<a href="%1$s" style="" class="alignright %2$s" aria-label="%3$s">X</a>',
- esc_url( add_query_arg( array( $this->get_query_variable_name() => 1 ) ) ),
- esc_attr( $class . '--close' ),
- esc_attr( $dismiss_msg )
- );
- echo '<div>';
- echo '<h2 class="' . esc_attr( $class . '--header' ) . '">' . esc_html__( 'Go premium!', 'wordpress-seo' ) . '</h2>';
- echo '<ul class="' . esc_attr( $class . '--motivation' ) . '">' . $arguments_html . '</ul>';
- echo '<p><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $upgrade_msg ) . '</a><br />';
- echo '</div>';
- echo '</div>';
- }
- /**
- * Formats the argument to a HTML list item.
- *
- * @param string $argument The argument to format.
- *
- * @return string Formatted argument in HTML.
- */
- protected function get_argument_html( $argument ) {
- $class = $this->get_html_class();
- return sprintf(
- '<li><div class="%1$s">%2$s</div></li>',
- esc_attr( $class . '--argument' ),
- $argument
- );
- }
- /**
- * Checks if the block is hidden by the user.
- *
- * @return bool False when it should be shown, True if it should be hidden.
- */
- protected function is_hidden() {
- $transient_name = $this->get_option_name();
- $hide = (bool) get_user_option( $transient_name );
- if ( ! $hide ) {
- $query_variable_name = $this->get_query_variable_name();
- if ( filter_input( INPUT_GET, $query_variable_name, FILTER_VALIDATE_INT ) === 1 ) {
- // No expiration time, so this would normally not expire, but it wouldn't be copied to other sites etc.
- update_user_option( get_current_user_id(), $transient_name, true );
- $hide = true;
- }
- }
- return $hide;
- }
- /**
- * Retrieves the option name to use.
- *
- * @return string The name of the option to save the data in.
- */
- protected function get_option_name() {
- return 'yoast_promo_hide_' . $this->identifier;
- }
- /**
- * Retrieves the query variable to use for dismissing the block.
- *
- * @return string The name of the query variable to use.
- */
- protected function get_query_variable_name() {
- return 'yoast_promo_hide_' . $this->identifier;
- }
- /**
- * Returns the HTML base class to use.
- *
- * @return string The HTML base class.
- */
- protected function get_html_class() {
- return 'yoast_' . $this->identifier;
- }
- }
|