Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.153 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_Accuracy extends SQ_Models_Abstract_Assistant { protected $_category = 'accuracy'; public function init() { parent::init(); if ( ! isset( $this->_audit->data ) ) { $this->_error = true; } } public function setTasks( $tasks ) { parent::setTasks( $tasks ); $this->_tasks[ $this->_category ] = array( 'accuracy' => array( 'title' => esc_html__( "Rank accuracy", 'squirrly-seo' ), 'description' => sprintf( esc_html__( "Do you need better accuracy for your ranking results? %s Look at the %sBusiness Plan%s pricing for Squirrly SEO. %s The SERP Checker Available on FREE and PRO Plans is made via Search Console integration, which means that the information is not as accurate as possible and will not clearly depict the exact position in Google. %s Why? %s Google uses an average when it comes to the position. And it's not the true position. The average is made according to the positions that the page was found on when users did click on it. %s Also, the data inside Search Console is a bit old, so if you're actively trying to increase your rankings day in and day out, you need the Business Plan. %s If you just want casually to know your rankings and not care about FULL accuracy, then you can stick with your current plan.", 'squirrly-seo' ), '<br /><br />', '<a href="' . SQ_Classes_RemoteController::getMySquirrlyLink( 'plans' ) . '" target="_blank"><strong>', '</strong></a>', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />', '<br /><br />' ), ), ); } /*********************************************/ /** * 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>'; if ( ! $this->_audit->sq_analytics_gsc_connected ) { $header .= '<li class="completed"> <a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_seosettings', 'webmaster' ) . '" class="btn btn-primary text-white col-10 offset-1 mt-1">' . esc_html__( "Connect Google Search", 'squirrly-seo' ) . '</a> </li>'; } if ( ! $this->_audit->sq_analytics_google_connected ) { $header .= '<li class="completed"> <a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_seosettings', 'webmaster' ) . '" class="btn btn-primary text-white col-10 offset-1 mt-1">' . esc_html__( "Connect Google Analytics", 'squirrly-seo' ) . '</a> </li>'; } return $header; } /** * Notify user if the gathered data is from GSC or SERP CHECKER * * @param $completed * * @return string */ public function getColor( $completed ) { if ( $this->_audit->sq_subscription_serpcheck ) { return self::TASK_COMPLETE; } elseif ( $this->_audit->sq_analytics_gsc_connected ) { return self::TASK_OBSCURE; } else { return self::TASK_OBSCURE; } } /** * Check if Serp Check exists. If not, return false * * @return bool|WP_Error */ public function checkAccuracy( $task ) { if ( ! $this->_audit->sq_subscription_serpcheck ) { $task['completed'] = false; return $task; } $task['completed'] = true; return $task; } }