PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
wordpress-seo-premium
/
admin
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */ /** * Class WPSEO_Premium_Upsell_Admin_Block */ class WPSEO_Premium_Upsell_Admin_Block { /** * Hook to display the block on. * * @var string */ protected $hook; /** * Identifier to use in the dismissal functionality. * * @var string */ 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 keyphrases', '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 email 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 notice', 'wordpress-seo' ), 'Yoast SEO Premium' ); /* translators: %s expands to Yoast SEO Premium */ $button_text = esc_html( sprintf( __( 'Get %s', 'wordpress-seo' ), 'Yoast SEO Premium' ) ); $button_text .= '<span class="screen-reader-text">' . esc_html__( '(Opens in a new browser tab)', 'wordpress-seo' ) . '</span>' . '<span aria-hidden="true" class="yoast-button-upsell__caret"></span>'; $upgrade_button = sprintf( '<a id="wpseo-%1$s-popup-button" class="yoast-button-upsell" href="%2$s" target="_blank">%3$s</a>', $this->identifier, esc_url( $url ), $button_text ); echo '<div class="' . esc_attr( $class ) . '">'; printf( '<a href="%1$s" style="" class="alignright button %2$s" aria-label="%3$s"><span class="dashicons dashicons-no-alt"></span></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' ) . '">' . sprintf( /* translators: %s expands to Yoast SEO Premium */ esc_html__( 'Upgrade to %s', 'wordpress-seo' ), 'Yoast SEO Premium' ) . '</h2>'; echo '<ul class="' . esc_attr( $class . '--motivation' ) . '">' . $arguments_html . '</ul>'; echo '<p>' . $upgrade_button . '</p>'; 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; } }
[+]
..
[-] class-yoast-columns.php
[edit]
[-] class-database-proxy.php
[edit]
[-] class-admin-editor-specific-replace-vars.php
[edit]
[-] courses-overview.php
[edit]
[-] class-admin-asset-manager.php
[edit]
[-] class-license-page-manager.php
[edit]
[-] class-bulk-title-editor-list-table.php
[edit]
[+]
views
[-] class-option-tabs-formatter.php
[edit]
[+]
services
[-] class-keyword-synonyms-modal.php
[edit]
[-] interface-collection.php
[edit]
[-] class-schema-person-upgrade-notification.php
[edit]
[-] class-yoast-network-admin.php
[edit]
[-] class-yoast-dashboard-widget.php
[edit]
[-] class-admin-asset-location.php
[edit]
[-] class-recalculate-scores.php
[edit]
[+]
import
[-] index.php
[edit]
[+]
formatter
[-] class-plugin-availability.php
[edit]
[-] class-asset.php
[edit]
[-] class-admin-asset-analysis-worker-location.php
[edit]
[-] class-admin-asset-seo-location.php
[edit]
[-] class-yoast-form.php
[edit]
[-] class-meta-table-accessible.php
[edit]
[+]
recalculate
[-] class-admin-help-panel.php
[edit]
[-] class-extensions.php
[edit]
[+]
metabox
[+]
pages
[-] class-extension-manager.php
[edit]
[-] class-expose-shortlinks.php
[edit]
[+]
capabilities
[-] class-yoast-plugin-conflict.php
[edit]
[-] class-config.php
[edit]
[-] .DS_Store
[edit]
[+]
notifiers
[-] class-option-tabs.php
[edit]
[-] class-admin-recommended-replace-vars.php
[edit]
[+]
config-ui
[-] class-meta-columns.php
[edit]
[-] class-remote-request.php
[edit]
[-] class-social-admin.php
[edit]
[-] class-plugin-conflict.php
[edit]
[-] class-collector.php
[edit]
[+]
roles
[-] class-yoast-modal.php
[edit]
[-] class-multiple-keywords-modal.php
[edit]
[-] class-cornerstone.php
[edit]
[-] class-admin-utils.php
[edit]
[+]
onpage
[-] class-admin.php
[edit]
[-] class-admin-gutenberg-compatibility-notification.php
[edit]
[-] class-add-keyword-modal.php
[edit]
[-] class-my-yoast-proxy.php
[edit]
[-] class-premium-popup.php
[edit]
[+]
watchers
[+]
listeners
[-] class-option-tab.php
[edit]
[+]
exceptions
[+]
links
[-] class-customizer.php
[edit]
[-] class-my-yoast-route.php
[edit]
[-] class-suggested-plugins.php
[edit]
[-] class-admin-media-purge-notification.php
[edit]
[+]
menu
[-] class-primary-term-admin.php
[edit]
[+]
taxonomy
[-] class-help-center.php
[edit]
[-] class-admin-asset-dev-server-location.php
[edit]
[+]
help_center
[-] ajax.php
[edit]
[-] class-yoast-notification-center.php
[edit]
[-] class-paper-presenter.php
[edit]
[-] class-bulk-description-editor-list-table.php
[edit]
[-] class-yoast-network-settings-api.php
[edit]
[-] class-meta-storage.php
[edit]
[-] class-extension.php
[edit]
[-] interface-installable.php
[edit]
[-] class-yoast-alerts.php
[edit]
[+]
endpoints
[-] class-bulk-editor-list-table.php
[edit]
[-] class-plugin-compatibility.php
[edit]
[-] class-admin-init.php
[edit]
[-] class-gutenberg-compatibility.php
[edit]
[+]
filters
[-] class-admin-asset-yoast-components-l10n.php
[edit]
[-] class-yoast-notification.php
[edit]
[-] class-export.php
[edit]
[+]
tracking
[-] class-help-center-item.php
[edit]
[+]
google_search_console
[+]
statistics
[-] class-premium-upsell-admin-block.php
[edit]
[+]
ajax
[-] class-admin-user-profile.php
[edit]
[-] class-product-upsell-notice.php
[edit]