File manager - Edit - /home/xfekoga/grenier/wp-content/plugins/defender-security/src/component/trusted-proxy-preset/class-trusted-proxy-preset.php
Back
<?php /** * The trusted proxy preset class. * * @package WP_Defender\Component\Trusted_Proxy_Preset */ namespace WP_Defender\Component\Trusted_Proxy_Preset; use Exception; use InvalidArgumentException; /** * Represents a trusted proxy preset. */ class Trusted_Proxy_Preset { /** * Proxy preset name. * * @var string */ private $proxy_preset = ''; /** * Sets the proxy preset. * * @param string $proxy_preset Proxy preset name. */ public function set_proxy_preset( string $proxy_preset ): void { $this->proxy_preset = $proxy_preset; } /** * Get proxy preset instance. * * @return mixed * @throws InvalidArgumentException Unknown proxy type. */ private function instance() { switch ( $this->proxy_preset ) { case Cloudflare_Proxy::PROXY_SLUG: return wd_di()->get( Cloudflare_Proxy::class ); default: throw new InvalidArgumentException( 'Unknown proxy type: ' . esc_html( $this->proxy_preset ) ); } } /** * Get trusted preset IPs. * * @return mixed */ public function get_ips() { try { return $this->instance()->get_ips(); } catch ( Exception $e ) { return false; } } /** * Update trusted preset IPs. * * @return mixed */ public function update_ips() { try { return $this->instance()->update_ips(); } catch ( Exception $e ) { return false; } } /** * Delete trusted preset IPs. * * @return bool */ public function delete_ips() { try { return $this->instance()->delete_ips(); } catch ( Exception $e ) { return false; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings