џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ џџџџџџџџ џџџџџџџџџџџџ џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ#џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ"џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ!џџџџџџџџџџџџџџџџџџџџ€ЊЮїџџџџF ›|€X9"@PАЮїџџџџъвы:ННИ`‡5@№ъфЭїџџџџ7 Ба€Ј@7@аЮїџџџџ%ŽъЪЋx,Ю(F7@pлфЭїџџџџ™Bй”Цwƒј@7@щфЭїџџџџ=D?{Vч€ˆF7@ лфЭїџџџџюrЛ„мwƒРA7@ ?Юїџџџџ!б)НmsђРJ7@kуЭїџџџџмZутžбк˜G7@ИфЭїџџџџ‘Ѓ’6ˆвwƒH7@`9уЭїџџџџˆюїйЂМhH7@џџџџЛp…ћС›ѓ№P7@€ЊЮїџџџџEтЧСwƒ@G7@€ЊЮїџџџџC˜6йц€ˆ64@№€?ЮїџџџџЬУrз;pђАr$@JтЭїџџџџA†ЧЦCТнјQ7@HтЭїџџџџКjƒыяКћЗ`R7@ЗЮїџџџџї!язxПм‹№н7@жЮїџџџџBрЎ-ЯЧЂPо7@аеЮїџџџџфкРoј@Ќ–Ио7@pеЮїџџџџcHЈZДM˜(п7@P1lЮїџџџџчьЬб*ŽшK7@€:сЭїџџџџтџЃ!l'№шп7@ЈЮ?Юї ‘эЅ—_O$хPL7@а,ЬЯїBд ЖUVqђИL7@АЮїџџџџгЯ#Up"8нM7@аlЮїџџџџВQŠ—+ЁЙЂ€M7@€lЮїџџџџІЦDcJПшƒ№M7@PЮїџџџџQwЊлA дxт7@иЩЮїџџџџd*(г•%8нXN7@hЩЮїџџџџZкѓђлA дИN7@(ЮїџџџџСМы*PЬwƒ№у7@H*ЮїфŒЂUЉBйЅИф7@€ЊЮїџџџџњexьлаwƒРm1@PАЮїџџџџТEsКїї–H=7@РСcЭїA‹ОRlЬh5@e HTTP API can handle SSL/TLS requests. * * @since 5.2.0 * * @return array The test result. */ public function get_test_ssl_support() { $result = array( 'label' => '', 'status' => '', 'badge' => array( 'label' => __( 'Security' ), 'color' => 'blue', ), 'description' => sprintf( '

%s

', __( 'Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.' ) ), 'actions' => '', 'test' => 'ssl_support', ); $supports_https = wp_http_supports( array( 'ssl' ) ); if ( $supports_https ) { $result['status'] = 'good'; $result['label'] = __( 'Your site can communicate securely with other services' ); } else { $result['status'] = 'critical'; $result['label'] = __( 'Your site is unable to communicate securely with other services' ); $result['description'] .= sprintf( '

%s

', __( 'Talk to your web host about OpenSSL support for PHP.' ) ); } return $result; } /** * Tests if scheduled events run as intended. * * If scheduled events are not running, this may indicate something with WP_Cron is not working * as intended, or that there are orphaned events hanging around from older code. * * @since 5.2.0 * * @return array The test results. */ public function get_test_scheduled_events() { $result = array( 'label' => __( 'Scheduled events are running' ), 'status' => 'good', 'badge' => array( 'label' => __( 'Performance' ), 'color' => 'blue', ), 'description' => sprintf( '

%s

', __( 'Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed. return home_url( $basename ); } /** * Returns the list of supported object subtypes exposed by the provider. * * @since 5.5.0 * * @return array List of object subtypes objects keyed by their name. */ public function get_object_subtypes() { return array(); } }