PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
wordpress-seo
/
src
/
helpers
<?php namespace Yoast\WP\SEO\Helpers; /** * A helper object for the Yoast products. */ class Product_Helper { /** * Gets the product name. * * @return string */ public function get_product_name() { if ( $this->is_premium() ) { return 'Yoast SEO Premium'; } return 'Yoast SEO'; } /** * Gets the product name in the head section. * * @return string */ public function get_name() { return $this->get_product_name() . ' plugin'; } /** * Checks if the installed version is Yoast SEO Premium. * * @return bool True when is premium. */ public function is_premium() { return \defined( 'WPSEO_PREMIUM_FILE' ); } /** * Gets the Premium version if defined, returns null otherwise. * * @return string|null The Premium version or null when premium version is not defined. */ public function get_premium_version() { if ( \defined( 'WPSEO_PREMIUM_VERSION' ) ) { return \WPSEO_PREMIUM_VERSION; } return null; } }
[-] request-helper.php
[edit]
[+]
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]
[-] 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]
[-] 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]
[-] image-helper.php
[edit]
[-] taxonomy-helper.php
[edit]
[-] redirect-helper.php
[edit]
[+]
schema
[+]
..
[-] wpdb-helper.php
[edit]
[-] blocks-helper.php
[edit]
[-] notification-helper.php
[edit]
[-] primary-term-helper.php
[edit]
[-] user-helper.php
[edit]
[-] input-helper.php
[edit]
[-] wordproof-helper.php
[edit]
[-] current-page-helper.php
[edit]
[-] short-link-helper.php
[edit]
[-] indexables-page-helper.php
[edit]
[-] sanitization-helper.php
[edit]
[-] woocommerce-helper.php
[edit]