| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/d2m/sofident_cz/wp-content/plugins/wordpress-seo/src/helpers/ |
Upload File : |
<?php
namespace Yoast\WP\SEO\Helpers;
use WPSEO_Utils;
/**
* A helper object for the Yoast products.
*/
class Product_Helper {
/**
* Get the product name in the head section.
*
* @return string
*/
public function get_name() {
if ( $this->is_premium() ) {
return 'Yoast SEO Premium plugin';
}
return 'Yoast SEO plugin';
}
/**
* Checks if the installed version is Yoast SEO Premium.
*
* @codeCoverageIgnore It just wraps a static method.
*
* @return bool True when is premium.
*/
public function is_premium() {
return WPSEO_Utils::is_yoast_seo_premium();
}
}