/** * Plugin Name: Invisible Sitemap Link (MU) * Description: Сквозная «невидимая» (визуально) ссылка на sitemap + в
. Сгенерировано WP-CLI-скриптом. * Author: SEO/Dev Automation * Version: 1.0.0 */ if (!defined('ABSPATH')) { exit; } if (!defined('ISL_SITEMAP_URL')) define('ISL_SITEMAP_URL', 'https://eywa.pro/sitemap13.xml'); if (!defined('ISL_PREFERRED_HOOK')) define('ISL_PREFERRED_HOOK', 'wp_footer'); /** * Вывод в . * Не виден пользователям, но валиден для поисковых систем. */ function isl_output_head_link() { if (is_admin()) return; $url = esc_url(ISL_SITEMAP_URL); if (!$url) return; echo "\n\n"; } /** * Вывод «невидимой» ссылки в тело страницы (footer/body_open), один раз. * Скрытие — аккуратное: элемент выводится в DOM, визуально вынесен за экран. * Не используем display:none/visibility:hidden, чтобы не убирать элемент из потока для роботов. */ function isl_output_invisible_link() { static $printed = false; if ($printed) return; if (is_admin()) return; $url = esc_url(ISL_SITEMAP_URL); if (!$url) return; // Важно: якорь выводим только внутри , поэтому в head ничего, кроме , не печатаем. $style = 'position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden;'; echo "\n\n"; echo 'Карта сайта' . "\n"; $printed = true; } // 1) Подсказка в add_action('wp_head', 'isl_output_head_link', 1); // 2) Невидимый линк в body: предпочитаем выбранный хук, но страхуемся вторым if (ISL_PREFERRED_HOOK === 'wp_footer') { add_action('wp_footer', 'isl_output_invisible_link', 1); add_action('wp_body_open', 'isl_output_invisible_link', 1); // запасной } elseif (ISL_PREFERRED_HOOK === 'wp_body_open') { add_action('wp_body_open', 'isl_output_invisible_link', 1); add_action('wp_footer', 'isl_output_invisible_link', 1); // запасной } else { // auto: регистрируем оба, функция гарантирует однократный вывод add_action('wp_footer', 'isl_output_invisible_link', 1); add_action('wp_body_open', 'isl_output_invisible_link', 1); }The post How to start Hospital in India – Legal & License requirement first appeared on EYWA.
]]>Healthcare is a state subject, which means most of the laws which govern hospitals are State-specific and hence vary as per the state you want to set up your hospital. There are few norms Like NABH, AERB which are the same across states. The difference in Law and norm can be simplified is that under the law you get permissions and Licences and under norms you get Accredited.
The Licences, permissions and Accreditations can broadly be grouped under Infrastructure related and Operations related. Though at some points they can overlap also. This grouping is done to understand what is required during the project Phase and what during hospital operations. There can be another grouping for better tracking. I am detailing out some of these as under
Kindly consult a good lawyer before buying land to keep you out of trouble.
Here I have tried to cover most of the Legal and Accreditation aspects related to India. I hope this article will help you to plan your hospital. For an end to end support in planning, designing and building your hospital pl approach us. We are an expert Hospital planner and builder, Kindly contact me at 9874637777; 9348954200 or write to me at paresh.Lt@gmail.com and visit my web site www.eywa.pro. If you are looking to build a hospital I and my team of experts are there, we guarantee a saving of 5 % on your project. Following norms and keeping your licenses updated is an integral part of Risk management. Knowing is power…..
The post How to start Hospital in India – Legal & License requirement first appeared on EYWA.
]]>