PATH:
home
/
letacommog
/
letacommunication
/
wp-content
/
plugins
/
redirection
/
matches
<?php require_once dirname( __FILE__ ) . '/http-header.php'; /** * Check that a cookie value exists */ class Cookie_Match extends Header_Match { public function name() { return __( 'URL and cookie', 'redirection' ); } public function is_match( $url ) { if ( $this->regex ) { $regex = new Red_Regex( $this->value, true ); return $regex->is_match( Redirection_Request::get_cookie( $this->name ) ); } return Redirection_Request::get_cookie( $this->name ) === $this->value; } }
[+]
..
[-] user-agent.php
[edit]
[-] url.php
[edit]
[-] ip.php
[edit]
[-] from-url.php
[edit]
[-] custom-filter.php
[edit]
[-] http-header.php
[edit]
[-] language.php
[edit]
[-] user-role.php
[edit]
[-] page.php
[edit]
[-] server.php
[edit]
[-] cookie.php
[edit]
[-] from-notfrom.php
[edit]
[-] login.php
[edit]
[-] referrer.php
[edit]