0byt3m1n1
Path:
/
data
/
40
/
5
/
122
/
64
/
5448064
/
user
/
6519071
/
htdocs
/
wp-content
/
plugins
/
redirection
/
matches
/
[
Home
]
File: from-url.php
<?php /** * Trait to add redirect matching that adds a matched target */ trait FromUrl_Match { /** * URL to match against * * @var string */ public $url = ''; /** * Save data to an array, ready for serializing. * * @param array $details New match data. * @param boolean $no_target_url Does the action have a target URL. * @param array $data Existing match data. * @return array */ private function save_data( array $details, $no_target_url, array $data ) { if ( $no_target_url === false ) { return array_merge( [ 'url' => isset( $details['url'] ) ? $this->sanitize_url( $details['url'] ) : '', ], $data ); } return $data; } /** * Get target URL for this match, depending on whether we match or not * * @param string $requested_url Request URL. * @param string $source_url Redirect source URL. * @param Red_Source_Flags $flags Redirect flags. * @param boolean $matched Is the URL matched. * @return string|false */ public function get_target_url( $requested_url, $source_url, Red_Source_Flags $flags, $matched ) { $target = $this->get_matched_target( $matched ); if ( $flags->is_regex() && $target ) { return $this->get_target_regex_url( $source_url, $target, $requested_url, $flags ); } return $target; } /** * Return the matched target, if one exists. * * @param boolean $matched Is it matched. * @return false|string */ private function get_matched_target( $matched ) { if ( $matched ) { return $this->url; } return false; } /** * Load the data into the instance. * * @param String $values Serialized PHP data. * @return array */ private function load_data( $values ) { $values = unserialize( $values ); if ( isset( $values['url'] ) ) { $this->url = $values['url']; } return $values; } /** * Get the loaded data as an array. * * @return array<url: string> */ private function get_from_data() { return [ 'url' => $this->url, ]; } }
© 2017 -
ZeroByte.ID
.