ADVERTISEMENT

Cayetano to gov't: Define Philippines' strategy on West PH Sea

Published May 16, 2023 01:06 pm
Senator Alan Peter Cayetano on Tuesday, May 16,  urged the Philippine government to once and for all define its strategy on the West Philippine Sea, saying it must lay out a clear strategy for maintaining the country’s territorial right to the contested area. In a manifestation during the confirmation hearing of the ad-interim appointments of fifty (50) General and Flag Officers of the Armed Forces of the Philippines (AFP), Cayetano said the country lacks a well-defined strategy because the approach switches every time there is a new administration. “Kung gusto ng isang presidenteng sobra-sobrang pro-China, gusto ng isa sobra-sobrang anti-China, gusto ng isa sobra-sobrang pro-US, y’ung isa anti-US, ay parang pwede sa ating bansa (If one President is a full pro-China, another is fully anti-China, one is fully pro-US, another is anti-US, it is as if it is OK for our country),” he observed. “If every administration iba ang strategy natin (has a different strategy), that’s a recipe for failure,” he added. Cayetano said rather than just allowing the chief advisory unit of the President to craft and implement the strategy, the military leaders of the country must “continue to be critical thinkers” and involve themselves, along with the country’s diplomats, in the decision-making process. “Yes, they have to follow orders kung ano ang strategy na inilahad ng commander-in-chief (what is the strategy laid down by the Commander-in- Chief) , [however] in other countries, the military establishment is so strong that the swing of the [command] ng Pangulo sa strategy (of the President’s strategy) is also limited. Sa atin, parang unlimited (To us it is unlimited),” he said. Cayetano, who served as Foreign Affairs Secretary from 2017 to 2018, said it would also help if the country would make a long-term plan that would serve as a blueprint for the next one hundred or even one thousand years. “When I was in the DFA (Department of Foreign Affairs), I kept on telling our people in the DFA to stop complaining na ang (that)  China may one-hundred (100) year plan at one-thousand (1,000) year plan and [Instead] start making the Philippine one-hundred (100) year plan and the Philippine one-thousand (1,000) year plan,” he said. “Very, very clear kung ano ang strategy ng China (China’s strategy is very clear) Very, very clear din kung ano ang strategy ng US (the US strategy also also very lear) pero very, very unclear kung ano ang strategy natin (but the country’s strategy is very unclear),” he added. Cayetano said the government must also look at history to see how the Philippines could get entangled in global power struggles if it does not set a specific long-term strategy. “I’m very concerned about that kasi (because) we have to look at history. Look what happened sa Cuba when they got in between the US and the USSR, look what happened with Turkey n’ung maglalagay din ng missiles d’un ang US (when the US also installed missile in Türkiye),” he said. While Cayetano emphasized that the government must not discuss its strategy in public to keep its confidentiality, he said the people need to know that the government indeed has something up its sleeves. “I disagree na ilahad ‘yan in public kasi hindi magandang strategy na pinapakita mo sa katunggali mo ang strategy mo I disagree with making public our strategy because our enemy will know),” he said. “But kung mismong top level people din sa House at sa Senate ay hindi rin alam for sure kung ano ang strategy natin, eh problema y’un (A problem arises when leaders of the Senate and the House of Representatives do not know for sure what is our strategy),” he added









Related Tags

Senator Alan Peter Cayetano Marcos administration West Philippine Sea
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.