__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Yoast\WHIPv2;
/**
* Represents a host.
*/
class Host {
/**
* Key to an environment variable which should be set to the name of the host.
*
* @var string
*/
const HOST_NAME_KEY = 'WHIP_NAME_OF_HOST';
/**
* Filter name for the filter which allows for pointing to the WP hosting page instead of the Yoast version.
*
* @var string
*/
const HOSTING_PAGE_FILTER_KEY = 'whip_hosting_page_url_wordpress';
/**
* Retrieves the name of the host if set.
*
* @return string The name of the host.
*/
public static function name() {
$name = (string) \getenv( self::HOST_NAME_KEY );
return self::filterName( $name );
}
/**
* Filters the name if we are in a WordPress context.
* In a non-WordPress content this function just returns the passed name.
*
* @param string $name The current name of the host.
*
* @return string The filtered name of the host.
*/
private static function filterName( $name ) {
if ( \function_exists( 'apply_filters' ) ) {
return (string) \apply_filters( \strtolower( self::HOST_NAME_KEY ), $name );
}
return $name;
}
/**
* Retrieves the message from the host if set.
*
* @param string $messageKey The key to use as the environment variable.
*
* @return string The message as set by the host.
*/
public static function message( $messageKey ) {
$message = (string) \getenv( $messageKey );
return self::filterMessage( $messageKey, $message );
}
/**
* Filters the message if we are in a WordPress context.
* In a non-WordPress content this function just returns the passed message.
*
* @param string $messageKey The key used for the environment variable.
* @param string $message The current message from the host.
*
* @return string
*/
private static function filterMessage( $messageKey, $message ) {
if ( \function_exists( 'apply_filters' ) ) {
return (string) \apply_filters( \strtolower( $messageKey ), $message );
}
return $message;
}
/**
* Returns the URL for the hosting page.
*
* @return string The URL to the hosting overview page.
*/
public static function hostingPageUrl() {
$url = 'https://yoa.st/w3';
return self::filterHostingPageUrl( $url );
}
/**
* Filters the hosting page url if we are in a WordPress context.
* In a non-WordPress context this function just returns a link to the Yoast hosting page.
*
* @param string $url The previous URL.
*
* @return string The new URL to the hosting overview page.
*/
private static function filterHostingPageUrl( $url ) {
if ( \function_exists( 'apply_filters' ) && \apply_filters( self::HOSTING_PAGE_FILTER_KEY, false ) ) {
return 'https://wordpress.org/hosting/';
}
return $url;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Configs | Folder | 0775 |
|
|
| Exceptions | Folder | 0775 |
|
|
| Facades | Folder | 0775 |
|
|
| Interfaces | Folder | 0775 |
|
|
| Messages | Folder | 0775 |
|
|
| Presenters | Folder | 0775 |
|
|
| Configuration.php | File | 1.58 KB | 0775 |
|
| Host.php | File | 2.67 KB | 0775 |
|
| MessageDismisser.php | File | 1.66 KB | 0775 |
|
| MessageFormatter.php | File | 839 B | 0775 |
|
| MessagesManager.php | File | 1.92 KB | 0775 |
|
| RequirementsChecker.php | File | 4.68 KB | 0775 |
|
| VersionRequirement.php | File | 3.76 KB | 0775 |
|
| WPDismissOption.php | File | 997 B | 0775 |
|
| WPMessageDismissListener.php | File | 1.76 KB | 0775 |
|