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_Authority extends SQ_Models_Abstract_Assistant { protected $_category = 'authority'; protected $_moz_page_authority = false; const AUTHORITY_MINVAL = 35; public function init() { parent::init(); if ( ! isset( $this->_audit->data ) ) { $this->_error = true; return; } if ( isset( $this->_audit->data->sq_analytics_moz->page_authority ) ) { $this->_moz_page_authority = $this->_audit->data->sq_analytics_moz->page_authority; } else { $this->_error = true; } } /** * Customize the tasks header * * @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>'; 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 ); } public function setTasks( $tasks ) { parent::setTasks( $tasks ); $this->_tasks[ $this->_category ] = array( 'authority' => array( 'title' => sprintf( esc_html__( "Authority over %s", 'squirrly-seo' ), self::AUTHORITY_MINVAL ), 'value' => (int) $this->_moz_page_authority . ' ' . esc_html__( "Authority", 'squirrly-seo' ), 'description' => sprintf( esc_html__( "Your Page Authority Needs to be over %s to complete this task. %s To do that you'll need good metrics for all the tasks in the Traffic Health section of Focus Pages. %s You'll also need inner links, social media signals and backlinks from 3rd party sites.", 'squirrly-seo' ), self::AUTHORITY_MINVAL, '<br /><br />', '<br /><br />' ), ), ); } /*********************************************/ /** * Keyword optimization required * * @param $title * * @return string */ public function getTitle( $title ) { if ( ! $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 ); } /** * Show the page authority */ public function getValue() { if ( $this->_moz_page_authority !== false ) { return (int) $this->_moz_page_authority; } return false; } /** * Check the page authority to be grater than AUTHORITY_MINVAL * * @return bool|WP_Error */ public function checkAuthority( $task ) { if ( $this->_moz_page_authority !== false ) { $task['completed'] = ( $this->_moz_page_authority >= self::AUTHORITY_MINVAL ); return $task; } $task['error'] = true; return $task; } }