ADVERTISEMENT

NEDA proposes 3-phased interventions against virus

Published Mar 24, 2020 12:00 am
By CHINO S. LEYCO The National Economic and Development Authority (NEDA) said yesterday that well-coordinated measures guided by a comprehensive plan are crucial to contain the spread of the coronavirus disease (COVID-19) and to mitigate its social as well as economic impact. “This public health emergency brought about by COVID-19 shows us how crucial it is for us to have a whole-of-government and whole-of-society approach in addressing this challenge," Socioeconomic Planning Secretary Ernesto M. Pernia said in a statement. “The response measures should delicately balance the health and economic objectives, particularly as the impact varies by economic class. Otherwise, the situation could deteriorate to a social and political crisis,” he added. To mitigate the social and economic impact of the COVID-19 pandemic, NEDA has proposed a three-phased program of interventions: Phase 1a: Clinical/Medical Response; Phase 1b: Public Health Response; Phase 1c: Short-term augmentation of health systems capacity; Phase 2: Rebuild consumer and business confidence; and Phase 3: Resume a new normal state of economic activity that is more prepared for another possible pandemic. “During a crisis, it is best to plan ahead and avoid the worst-case scenario. We have crafted a comprehensive program of actions, learning from experiences and insights from various sectors and countries," Pernia said. "This program requires close collaboration among government instrumentalities from national to local, the business sector from micro to large, NGOs, and citizens alike. It is also necessary for us to think ahead even while we address the most urgent and critical challenges,” the Cabinet official added. As COVID-19 cases continue to rise, the Philippines is in Phase 1, which focuses on public health measures to minimize the duration and contain the spread of COVID-19. Under Phase 1a: Clinical / Medical Response, early detection and diagnosis, effective quarantine system, effective management and treatment protocol, research and epidemiological studies are among the necessary government interventions. “The key to a successful medical response is widespread testing. Early detection and diagnosis will lead to early initiation of quarantine procedures, which will therefore limit or prevent the spread of the coronavirus disease,” Pernia said. “It is crucial to have adequate number of testing kits, medical supplies, facilities, and equipment and health care personnel across the country. This may require the use of makeshift facilities or converted structures, in the immediate term,” he added. Interventions under Phase 1b: Public Health Response, on the other hand, requires utmost cooperation from the public. Travel ban, promotion of proper hygiene, ban on crowded gatherings, school closures, work suspension, flexible work arrangements in non-essential sectors, and work continuance in essential sectors comprise this phase, to contain the spread of the disease while ensuring sufficiency and accessibility of basic necessities. “We are currently in this phase – implementing protective-distancing and, in the coming days, social protection programs will be rolled out for those hit hard by the work suspension orders. These are being shepherded by the joint Inter-Agency Task Force on Emerging Infectious Diseases and National Disaster Risk Reduction Management Council,” Pernia said. Meanwhile, efforts to augment health systems capacity need to be accelerated in order to ensure that the country is equipped to handle potential surge when the ECQ is lifted. Under Phase 1c, the establishment of makeshift outpatient consultation facilities with specimen harvesting capability is needed, including the increase of supply of personal protective equipment (PPE) and remote quarantine facilities (RQF).
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.