s2Member v110815
Source Code: s2member\includes\classes\ptags.inc.php
Docs updated: August 15, 2011, 3:13 pm
Open for public discussion.
(!-- s-words :: --)Source Code Documentation Packages ( Overview ) Classes Deprecated Todo Index Source Code jQuery(window).load(function(){ if(typeof location.hash === 'string' && location.hash.match(/^#/)) jQuery('olli'+location.hash).addClass('hilite'); }); jQuery(window).bind('hashchange', function(){ if(typeof location.hash === 'string' && location.hash.match(/^#/)) jQuery('olli').removeClass('hilite'); jQuery('olli'+location.hash).addClass('hilite'); }); [ full view ]s2member\includes\classes\ptags.inc.php ?php /** * s2Member's Tag protection routines *( for current page )*. * * Copyright: © 2009-2011 * {@link http://www.websharks-inc.com/ WebSharks, Inc.} * ( coded in the USA ) * * Released under the terms of the GNU General Public License. * You should have received a copy of the GNU General Public License, * along with this software. In the main directory, see: /licensing/ * If not, see: {@link http://www.gnu.org/licenses/}. * * @package s2Member\Tags * @since 3.5 */ if ( realpath ( __FILE__ ) === realpath ( $_SERVER [ "SCRIPT_FILENAME" ] ) ) exit ( "Do not access this file directly." ) ; /**/ if ( ! class_exists ( "c_ws_plugin__s2member_ptags" ) ) { /** * s2Member's Tag protection routines *( for current page )*. * * @package s2Member\Tags * @since 3.5 */ class c_ws_plugin__s2member_ptags { /** * Handles Tag Level Access permissions *( for current page )*. * * @package s2Member\Tags * @since 3.5 * * @return null Or exits script execution after redirection. */ public static function check_ptag_level_access ( ) { global $wp_query , $post ; /* get_the_ID() is NOT available outside The Loop. */ /**/ do_action ( "ws_plugin__s2member_before_check_ptag_level_access" , get_defined_vars ( ) ) ; /**/ $excluded = apply_filters ( "ws_plugin__s2member_check_ptag_level_access_excluded" , false , get_defined_vars ( ) ) ; /**/ if ( ! $excluded && is_tag ( ) && is_object ( $tag = $wp_query - get_queried_object ( ) ) && ( $tag_id = $tag - term_id ) && $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "membership_options_page" ] ) { $user = ( is_user_logged_in ( ) ) ? wp_get_current_user ( ) : false ; /* Get the current User's object. */ /**/ if ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "login_redirection_override" ] && ( $login_redirection_uri = c_ws_plugin__s2member_login_redirects:: login_redirection_uri ( $user , "root-returns-false" ) ) && preg_match ( "/^" . preg_quote ( $login_redirection_uri , "/" ) . "$/" , $_SERVER [ "REQUEST_URI" ] ) && c_ws_plugin__s2member_no_cache:: no_cache_constants ( true ) !== "nill" && ( ! $user || ! current_user_can ( "access_s2member_level0" ) ) ) { wp_redirect ( add_query_arg ( urlencode_deep ( array ( "s2member_seeking" = "ptag-" . $tag_id , "s2member_level_req" = "0" ) ) , get_page_link ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "membership_options_page" ] ) ) , apply_filters ( "ws_plugin__s2member_content_redirect_status" , 301 , get_defined_vars ( ) ) ) ; exit ( ) ; } else if ( !c_ws_plugin__s2member_systematics:: is_systematic_use_page ( ) ) /* Do NOT protect Systematics. However, there is 1 exception above ^. */ { for ( $n = $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "c" ] [ "levels" ] ; $n = 0 ; $n -- ) /* Tag Level restrictions. Go through each Level. */ { if ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "level" . $n . "_ptags" ] === "all" && c_ws_plugin__s2member_no_cache:: no_cache_constants ( true ) !== "nill" && ( ! $user || ! current_user_can ( "access_s2member_level" . $n ) ) ) { wp_redirect ( add_query_arg ( urlencode_deep ( array ( "s2member_seeking" = "ptag-" . $tag_id , "s2member_level_req" = $n ) ) , get_page_link ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "membership_options_page" ] ) ) , apply_filters ( "ws_plugin__s2member_content_redirect_status" , 301 , get_defined_vars ( ) ) ) ; exit ( ) ; } /**/ else if ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "level" . $n . "_ptags" ] && ( is_tag ( $tags = preg_split ( "/[\r \n \t;,]+/" , $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "level" . $n . "_ptags" ] ) ) || in_array ( $tag_id , $tags ) ) && c_ws_plugin__s2member_no_cache:: no_cache_constants ( true ) !== "nill" && ( ! $user || ! current_user_can ( "access_s2member_level" . $n ) ) ) { wp_redirect ( add_query_arg ( urlencode_deep ( array ( "s2member_seeking" = "ptag-" . $tag_id , "s2member_level_req" = $n ) ) , get_page_link ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "membership_options_page" ] ) ) , apply_filters ( "ws_plugin__s2member_content_redirect_status" , 301 , get_defined_vars ( ) ) ) ; exit ( ) ; } } /**/ for ( $n = $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "c" ] [ "levels" ] ; $n = 0 ; $n -- ) /* URIs. Go through each Level. */ { if ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "level" . $n . "_ruris" ] ) foreach ( preg_split ( "/[\r \n \t]+/" , c_ws_plugin__s2member_ruris:: fill_ruri_level_access_rc_vars ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "level" . $n . "_ruris" ] , $user ) ) as $str ) if ( $str && preg_match ( "/" . preg_quote ( $str , "/" ) . "/" , $_SERVER [ "REQUEST_URI" ] ) && c_ws_plugin__s2member_no_cache:: no_cache_constants ( true ) !== "nill" && ( ! $user || ! current_user_can ( "access_s2member_level" . $n ) ) ) { wp_redirect ( add_query_arg ( urlencode_deep ( array ( "s2member_seeking" = "ptag-" . $tag_id , "s2member_level_req" = $n ) ) , get_page_link ( $GLOBALS [ "WS_PLUGIN__" ] [ "s2member" ] [ "o" ] [ "membership_options_page" ] ) ) , apply_filters ( "ws_plugin__s2member_content_redirect_status" , 301 , get_defined_vars ( ) ) ) ; exit ( ) ; } } } /**/ do_action ( "ws_plugin__s2member_during_check_ptag_level_access" , get_defined_vars ( ) ) ; } /**/ do_action ( "ws_plugin__s2member_after_check_ptag_level_access" , get_defined_vars ( ) ) ; /**/ return ; /* For uniformity. */ } } } ? [ full view ]s2member\includes\classes\ptags.inc.php Source Code Documentation Packages ( Overview ) Classes Deprecated Todo Index Source Code(!-- :: s-words --)Statistics: Posted by System Robot — August 15th, 2011, 2:13 pm
]]>