PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
helpers
<?php namespace Yoast\WP\SEO\Helpers; use wpdb; /** * The AIOSEO Helper. */ class Aioseo_Helper { /** * The WordPress database instance. * * @var wpdb */ protected $wpdb; /** * The wpdb helper. * * @var Wpdb_Helper */ protected $wpdb_helper; /** * Class constructor. * * @param wpdb $wpdb The WordPress database instance. * @param Wpdb_Helper $wpdb_helper The wpdb helper. */ public function __construct( wpdb $wpdb, Wpdb_Helper $wpdb_helper ) { $this->wpdb = $wpdb; $this->wpdb_helper = $wpdb_helper; } /** * Retrieves the AIOSEO table name along with the db prefix. * * @return string The AIOSEO table name along with the db prefix. */ public function get_table() { return $this->wpdb->prefix . 'aioseo_posts'; } /** * Determines if the AIOSEO database table exists. * * @return bool True if the table is found. */ public function aioseo_exists() { return $this->wpdb_helper->table_exists( $this->get_table() ) === true; } /** * Retrieves the option where the global settings exist. * * @return array The option where the global settings exist. */ public function get_global_option() { return \json_decode( \get_option( 'aioseo_options', '' ), true ); } }
[+]
twitter
[-] url-helper.php
[edit]
[-] score-icon-helper.php
[edit]
[-] date-helper.php
[edit]
[-] robots-helper.php
[edit]
[-] wordpress-helper.php
[edit]
[-] home-url-helper.php
[edit]
[-] aioseo-helper.php
[edit]
[-] indexable-helper.php
[edit]
[-] site-helper.php
[edit]
[-] pagination-helper.php
[edit]
[-] product-helper.php
[edit]
[-] language-helper.php
[edit]
[-] string-helper.php
[edit]
[-] attachment-cleanup-helper.php
[edit]
[-] post-type-helper.php
[edit]
[-] require-file-helper.php
[edit]
[-] indexing-helper.php
[edit]
[-] import-cursor-helper.php
[edit]
[-] asset-helper.php
[edit]
[-] capability-helper.php
[edit]
[-] social-profiles-helper.php
[edit]
[-] post-helper.php
[edit]
[-] author-archive-helper.php
[edit]
[-] robots-txt-helper.php
[edit]
[-] indexable-to-postmeta-helper.php
[edit]
[-] import-helper.php
[edit]
[-] permalink-helper.php
[edit]
[-] meta-helper.php
[edit]
[-] wincher-helper.php
[edit]
[-] options-helper.php
[edit]
[+]
open-graph
[-] curl-helper.php
[edit]
[-] environment-helper.php
[edit]
[-] crawl-cleanup-helper.php
[edit]
[-] image-helper.php
[edit]
[-] taxonomy-helper.php
[edit]
[-] redirect-helper.php
[edit]
[+]
schema
[+]
..
[-] route-helper.php
[edit]
[-] wpdb-helper.php
[edit]
[-] blocks-helper.php
[edit]
[-] notification-helper.php
[edit]
[-] primary-term-helper.php
[edit]
[-] user-helper.php
[edit]
[-] first-time-configuration-notice-helper.php
[edit]
[-] current-page-helper.php
[edit]
[-] short-link-helper.php
[edit]
[-] sanitization-helper.php
[edit]
[-] woocommerce-helper.php
[edit]