File: /var/www/html/wp-content/plugins/wp-seopress/src/Helpers/ContentAnalysis.php
<?php // phpcs:ignore
namespace SEOPress\Helpers;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* ContentAnalysis
*/
abstract class ContentAnalysis {
/**
* The getData function.
*
* @return array
*/
public static function getData() { // phpcs:ignore -- TODO: check if method is outside this class before renaming.
$data = array(
'all_canonical' => array(
'title' => __( 'Canonical URL', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'schemas' => array(
'title' => __( 'Structured data types', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'old_post' => array(
'title' => __( 'Last modified date', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'keywords_permalink' => array(
'title' => __( 'Keywords in permalink', 'wp-seopress' ),
'impact' => null,
'desc' => null,
),
'headings' => array(
'title' => __( 'Headings', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'meta_title' => array(
'title' => __( 'Meta title', 'wp-seopress' ),
'impact' => null,
'desc' => null,
),
'meta_desc' => array(
'title' => __( 'Meta description', 'wp-seopress' ),
'impact' => null,
'desc' => null,
),
'social' => array(
'title' => __( 'Social meta tags', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'robots' => array(
'title' => __( 'Meta robots', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'img_alt' => array(
'title' => __( 'Alternative texts of images', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'nofollow_links' => array(
'title' => __( 'NoFollow Links', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'outbound_links' => array(
'title' => __( 'Outbound Links', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
'internal_links' => array(
'title' => __( 'Internal Links', 'wp-seopress' ),
'impact' => 'good',
'desc' => null,
),
);
return apply_filters( 'seopress_get_content_analysis_data', $data );
}
}