📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 10:36:15
📂
/ (Root)
/
home
/
xeqi7597
/
cds.claireduwig.com
/
wp-content
/
plugins
/
redirection
/
models
📍 /home/xeqi7597/cds.claireduwig.com/wp-content/plugins/redirection/models
🔄 Refresh
✏️
Editing: ip.php
Writable
<?php class Redirection_IP { private $ip; public function __construct( $ip = '' ) { $this->ip = ''; $ip = sanitize_text_field( $ip ); $ip = explode( ',', $ip ); $ip = array_shift( $ip ); $ip = filter_var( $ip, FILTER_VALIDATE_IP ); // Convert to binary // phpcs:ignore $ip = @inet_pton( trim( $ip ) ); if ( $ip !== false ) { // phpcs:ignore $this->ip = @inet_ntop( $ip ); // Convert back to string } } public function get() { return $this->ip; } }
💾 Save Changes
❌ Cancel