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_Social extends SQ_Models_Abstract_Assistant { protected $_category = 'social'; protected $_social_shares = 0; const SHARES_MINVAL = 100; public function init() { parent::init(); if ( ! isset( $this->_audit->data ) ) { $this->_error = true; return; } if ( ! isset( $this->_audit->data->sq_analytics_facebook->share ) && ! isset( $this->_audit->data->sq_analytics_facebook->like ) && ! isset( $this->_audit->data->sq_analytics_pinterest->share ) && ! isset( $this->_audit->data->sq_analytics_reddit->share ) ) { $this->_error = true; } if ( isset( $this->_audit->data->sq_analytics_facebook->share ) ) { $this->_social_shares += (int) $this->_audit->data->sq_analytics_facebook->share; } if ( isset( $this->_audit->data->sq_analytics_facebook->like ) ) { $this->_social_shares += (int) $this->_audit->data->sq_analytics_facebook->like; } if ( isset( $this->_audit->data->sq_analytics_pinterest->share ) ) { $this->_social_shares += (int) $this->_audit->data->sq_analytics_pinterest->share; } if ( isset( $this->_audit->data->sq_analytics_reddit->share ) ) { $this->_social_shares += (int) $this->_audit->data->sq_analytics_reddit->share; } } public function setTasks( $tasks ) { parent::setTasks( $tasks ); $this->_tasks[ $this->_category ] = array( 'social' => array( 'title' => sprintf( esc_html__( "%s Shares", 'squirrly-seo' ), self::SHARES_MINVAL ), 'value' => number_format( $this->_social_shares, 0, '.', ',' ) . ' ' . esc_html__( "social share", 'squirrly-seo' ), 'penalty' => 10, 'description' => sprintf( esc_html__( "This task only tracks shares from trackable sources. %s Twitter and LinkedIN share counts are no longer available. %s Of course, for Twitter you can always pay Twitter directly for API access, in which case we could give you a guide on how to integrate your Twitter API with our Focus Pages audit services. %s %shttps://developer.twitter.com/en/pricing/search-fullarchive%s", 'squirrly-seo' ), '<br /><br />', '<br /><br />', '<br /><br />', '<a href="https://developer.twitter.com/en/pricing/search-fullarchive" target="_blank">', '</a>' ), ), ); } /*********************************************/ 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"> <a href="' . SQ_Classes_Helpers_Tools::getAdminUrl( 'sq_seosettings', 'social' ) . '" target="_blank" class="sq_research_selectit btn btn-primary text-white col-12">' . esc_html__( "Go to Social Media Settings", 'squirrly-seo' ) . '</a> </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 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 ); } public function getValue() { if ( $this->_social_shares !== false ) { return number_format( (int) $this->_social_shares, 0, '.', ',' ); } return false; } public function checkSocial( $task ) { $task['completed'] = ( $this->_social_shares > self::SHARES_MINVAL ); return $task; } }