Server IP : 162.0.217.223 / Your IP : 216.73.216.150 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/squirrly-seo/models/focuspages/ |
Upload File : |
<?php defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' ); class SQ_Models_Focuspages_Impressions extends SQ_Models_Abstract_Assistant { protected $_category = 'impressions'; protected $_keyword = false; protected $_impressions = false; const IMPRESSIONS_MINVAL = 100; public function init() { parent::init(); if ( ! isset( $this->_audit->data ) ) { $this->_error = true; return; } if ( $this->_audit->sq_analytics_gsc_connected ) { if ( isset( $this->_audit->data->sq_analytics_gsc->keyword ) && $this->_audit->data->sq_analytics_gsc->keyword <> '' && isset( $this->_audit->data->sq_analytics_gsc->impressions ) ) { $this->_keyword = $this->_audit->data->sq_analytics_gsc->keyword; $this->_impressions = $this->_audit->data->sq_analytics_gsc->impressions; } elseif ( isset( $this->_audit->data->sq_seo_keywords->value ) ) { $this->_keyword = $this->_audit->data->sq_seo_keywords->value; $this->_impressions = 0; } } else { $this->_error = true; } } public function setTasks( $tasks ) { parent::setTasks( $tasks ); $this->_tasks[ $this->_category ] = array( 'impressions' => array( 'title' => esc_html__( "Search Results Impressions in the last 3 months", 'squirrly-seo' ), 'description' => sprintf( esc_html__( "Search Results Impressions in the last 3 months (requires connection to Google Search Console) %s Impressions = the number of times your page appeared in search results. %s To show you data inside this task, Squirrly retrieves information from your GSC based on the keyword you selected as the main keyword for this Focus Page. %s With data from this task, you are able to see if your focus page became visible on Google, if people are finding it and how they are interacting with it. %s PRO TIP %s : Since a focus page is one of your most important pages, you’ll also need great texts to attract CLICKS once you do reach page 1 of Google.", 'squirrly-seo' ), '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br /><strong class="text-primary">', '</strong>' ), ), ); } /*********************************************/ /** * Check if the Google Search Console is connected * * @return string */ public function getHeader() { $header = '<li class="completed">'; $header .= '<div class="font-weight-bold text-black-50 mb-1">' . esc_html__( "Current URL", 'squirrly-seo' ) . ': </div>'; $header .= '<a href="' . $this->_post->url . '" target="_blank" style="word-break: break-word;">' . urldecode( $this->_post->url ) . '</a>'; $header .= '</li>'; $header .= '<li class="completed">'; if ( ! $this->_audit->sq_analytics_gsc_connected ) { $header .= '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_seosettings', 'webmaster' ) . '" class="btn btn-primary text-white col-10 offset-1 mt-3">' . esc_html__( "Connect Google Search", 'squirrly-seo' ) . '</a>'; } elseif ( $this->_keyword ) { $header .= $this->getUsedKeywords(); $header .= '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_research', 'research', array( 'keyword=' . SQ_Classes_Helpers_Sanitize::escapeKeyword( $this->_keyword ) ) ) . '" target="_blank" class="btn btn-primary text-white col-10 offset-1 mt-3">' . esc_html__( "Do a research", 'squirrly-seo' ) . '</a>'; } else { if ( isset( $this->_post->ID ) ) { $edit_link = SQ_Classes_Helpers_Tools::getAdminUrl( 'post.php?post=' . (int) $this->_post->ID . '&action=edit' ); if ( $this->_post->post_type <> 'profile' ) { $edit_link = get_edit_post_link( $this->_post->ID, false ); } $header .= '<div class="font-weight-bold text-black-50 m-0 px-3 text-center">' . esc_html__( "No Keyword found in Squirrly Live Assistant", 'squirrly-seo' ) . '</div>'; $header .= '<a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_research', 'research' ) . '" target="_blank" class="btn btn-primary text-white col-10 offset-1 mt-3">' . esc_html__( "Do a research", 'squirrly-seo' ) . '</a>'; if ( isset( $this->_post->ID ) ) { $header .= '<a href="' . $edit_link . '" target="_blank" class="btn btn-primary text-white col-10 offset-1 my-2">' . esc_html__( "Optimize for a keyword", 'squirrly-seo' ) . '</a>'; } } } $header .= '</li>'; return $header; } /** * Customize the Color for this tasks * * @param $completed * * @return string */ public function getColor( $completed ) { if ( ! $completed ) { return self::TASK_INCOMPLETE; } return parent::getColor( $completed ); } /** * Keyword optimization required * * @param $title * * @return string */ public function getTitle( $title ) { if ( $this->_error && ! $this->_keyword ) { return '<img src="' . esc_url( _SQ_ASSETS_URL_ . 'img/assistant/tooltip.gif' ) . '" width="100">'; } elseif ( $this->_error && ! $this->_audit->sq_analytics_gsc_connected ) { return esc_html__( "Connect to Google Search Console.", 'squirrly-seo' ); } elseif ( ! $this->_completed && ! $this->_indexed ) { foreach ( $this->_tasks[ $this->_category ] as $task ) { if ( $task['completed'] === false ) { return '<img src="' . esc_url( _SQ_ASSETS_URL_ . 'img/assistant/tooltip.gif' ) . '" width="100">'; } } } return parent::getTitle( $title ); } public function getValue() { if ( ! $this->isError() ) { return number_format( (int) $this->_impressions, 0, '.', ',' ); } return false; } public function checkImpressions( $task ) { if ( $this->_impressions !== false ) { $task['completed'] = ( $this->_impressions >= self::IMPRESSIONS_MINVAL ); return $task; } $task['error'] = true; return $task; } }