PHP hook, building hooks in your application
Introduction
One of the real challenges in building any type of framework, core or application is making it possible for the developers to hook into the business logic at specific points. Since PHP is not event based, nor it works with interrupts you have to come up an alternative.
The test case
Lets assume we are the main developers of a webshop framework. Programmers can use our framework to build complete webshops. Programmers can manage the orders that are placed on the webshop with the order class. The order class is part of our framework and we don’t want it to be extended by any programmer. However we don’t want to limit to programmers in their possibilities to hook into the orders process.
For example programmers should be able to send an email to the webshopowner if an order changes from one specific delivery status to another. This functionality is not part of the default behavior in our framework and is custom for the progammers webshop implementation.
Like said before, PHP doesn’t provide interrupts or real events so we need to come up with another way to implement hooks into our application. Lets take a look at the observer pattern.
Implementing the Observer pattern
The observer pattern is a design-pattern that describes a way for objects to be notified to specific state-changes in objects of the application.
For the first implementation we can use SPL. The SPL provides in two simple objects:
SPLSubject
- attach (new observer to attach)
- detach (existing observer to detach)
- notify (notify all observers)
SPLObserver
- update (Called from the subject (i.e. when it’s value has changed).
iOrderRef = $iOrderRef;
// Get order information from the database or an other resources
$this->iStatus = Order::STATUS_SHIPPED;
}
/**
* Attach an observer
*
* @param SplObserver $oObserver
* @return void
*/
public function attach(SplObserver $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (isset($this->aObservers[$sHash])) {
throw new Exception('Observer is already attached');
}
$this->aObservers[$sHash] = $oObserver;
}
/**
* Detach observer
*
* @param SplObserver $oObserver
* @return void
*/
public function detach(SplObserver $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (!isset($this->aObservers[$sHash])) {
throw new Exception('Observer not attached');
}
unset($this->aObservers[$sHash]);
}
/**
* Notify the attached observers
*
* @param string $sEvent, name of the event
* @param mixed $mData, optional data that is not directly available for the observers
* @return void
*/
public function notify()
{
foreach ($this->aObservers as $oObserver) {
try {
$oObserver->update($this);
} catch(Exception $e) {
}
}
}
/**
* Add an order
*
* @param array $aOrder
* @return void
*/
public function delete()
{
$this->notify();
}
/**
* Return the order reference number
*
* @return int
*/
public function getRef()
{
return $this->iOrderRef;
}
/**
* Return the current order status
*
* @return int
*/
public function getStatus()
{
return $this->iStatus;
}
/**
* Update the order status
*/
public function updateStatus($iStatus)
{
$this->notify();
// ...
$this->iStatus = $iStatus;
// ...
$this->notify();
}
}
/**
* Order status handler, observer that sends an email to secretary
* if the status of an order changes from shipped to delivered, so the
* secratary can make a phone call to our customer to ask for his opinion about the service
*
* @package Shop
*/
class OrderStatusHandler implements SplObserver
{
/**
* Previous orderstatus
* @var int
*/
protected $iPreviousOrderStatus;
/**
* Current orderstatus
* @var int
*/
protected $iCurrentOrderStatus;
/**
* Update, called by the observable object order
*
* @param Observable_Interface $oSubject
* @param string $sEvent
* @param mixed $mData
* @return void
*/
public function update(SplSubject $oSubject)
{
if(!$oSubject instanceof Order) {
return;
}
if(is_null($this->iPreviousOrderStatus)) {
$this->iPreviousOrderStatus = $oSubject->getStatus();
} else {
$this->iCurrentOrderStatus = $oSubject->getStatus();
if($this->iPreviousOrderStatus === Order::STATUS_SHIPPED && $this->iCurrentOrderStatus === Order::STATUS_DELIVERED) {
$sSubject = sprintf('Order number %d is shipped', $oSubject->getRef());
//mail('secratary@example.com', 'Order number %d is shipped', 'Text');
echo 'Mail sended to the secratary to help her remember to call our customer for a survey.';
}
}
}
}
$oOrder = new Order(26012011);
$oOrder->attach(new OrderStatusHandler());
$oOrder->updateStatus(Order::STATUS_DELIVERED);
$oOrder->delete();
?>
There are several problems with the implementation above. To most important disadvantage is that we have only one update method in our observer. In this update method we don’t know when and why we are getting notified, just that something happened. We should keep track of everything that happens in the subject. (Or use debug_backtrace… just joking, don’t even think about using it that way ever!).
Taking it a step further, events
Lets take a look at the next example, we will extend the Observer implementation with some an additional parameter for the eventname that occured.
Finishing up, optional data
iOrderRef = $iOrderRef;
// Get order information from the database or something else...
$this->iStatus = Order::STATUS_SHIPPED;
}
/**
* Attach an observer
*
* @param Observer_Interface $oObserver
* @return void
*/
public function attachObserver(Observer_Interface $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (isset($this->aObservers[$sHash])) {
throw new Exception('Observer is already attached');
}
$this->aObservers[$sHash] = $oObserver;
}
/**
* Detach observer
*
* @param Observer_Interface $oObserver
* @return void
*/
public function detachObserver(Observer_Interface $oObserver)
{
$sHash = spl_object_hash($oObserver);
if (!isset($this->aObservers[$sHash])) {
throw new Exception('Observer not attached');
}
unset($this->aObservers[$sHash]);
}
/**
* Notify the attached observers
*
* @param string $sEvent, name of the event
* @param mixed $mData, optional data that is not directly available for the observers
* @return void
*/
public function notifyObserver($sEvent, $mData=null)
{
foreach ($this->aObservers as $oObserver) {
try {
$oObserver->update($this, $sEvent, $mData);
} catch(Exception $e) {
}
}
}
/**
* Add an order
*
* @param array $aOrder
* @return void
*/
public function add($aOrder = array())
{
$this->notifyObserver('onAdd');
}
/**
* Return the order reference number
*
* @return int
*/
public function getRef()
{
return $this->iOrderRef;
}
/**
* Return the current order status
*
* @return int
*/
public function getStatus()
{
return $this->iStatus;
}
/**
* Update the order status
*/
public function updateStatus($iStatus)
{
$this->notifyObserver('onBeforeUpdateStatus');
// ...
$this->iStatus = $iStatus;
// ...
$this->notifyObserver('onAfterUpdateStatus');
}
}
/**
* Order status handler, observer that sends an email to secretary
* if the status of an order changes from shipped to delivered, so the
* secratary can make a phone call to our customer to ask for his opinion about the service
*
* @package Shop
*/
class OrderStatusHandler implements Observer_Interface
{
protected $iPreviousOrderStatus;
protected $iCurrentOrderStatus;
/**
* Update, called by the observable object order
*
* @param Observable_Interface $oObservable
* @param string $sEvent
* @param mixed $mData
* @return void
*/
public function update(Observable_Interface $oObservable, $sEvent, $mData=null)
{
if(!$oObservable instanceof Order) {
return;
}
switch($sEvent) {
case 'onBeforeUpdateStatus':
$this->iPreviousOrderStatus = $oObservable->getStatus();
return;
case 'onAfterUpdateStatus':
$this->iCurrentOrderStatus = $oObservable->getStatus();
if($this->iPreviousOrderStatus === Order::STATUS_SHIPPED && $this->iCurrentOrderStatus === Order::STATUS_DELIVERED) {
$sSubject = sprintf('Order number %d is shipped', $oObservable->getRef());
//mail('secratary@example.com', 'Order number %d is shipped', 'Text');
echo 'Mail sended to the secratary to help her remember to call our customer for a survey.';
}
}
}
}
$oOrder = new Order(26012011);
$oOrder->attachObserver(new OrderStatusHandler());
$oOrder->updateStatus(Order::STATUS_DELIVERED);
$oOrder->add();
?>
Now we are able to take action on different events that occur.
Disadvantages
Although this implementation works quite well there are some drawbacks. One of those drawbacks is that we need to dispatch an event in our framework, if we don’t programmers can’t hook into our application. Triggering events everywhere give us a small performance penalty however I do think this way of working gives the programmers a nice way to hook into your application on those spots that you want them to hook in.
Just for the record
Notice that this code is just an example and can still use some improvements, for example: each observer is initialized even it will maybe never be notified, therefore I suggest to make use of lazy in some cases for loading the objects. There are other systems to hook into an application, more to follow!
Refact AI – помощник в области программирования,
способный завершать, улучшать и делать более безопасным код.
bizarremusic.forum24.ru/
27 Oct 25 at 12:01 pm
Конструктор Leia располагает ИИ-сервисом
для генерации сайтов разной сложности и объема – от лендингов до интернет-магазинов.
https://crimsonforum.borda.ru/
27 Oct 25 at 12:03 pm
наркологическая клиника анонимно [url=https://narkologicheskaya-klinika-24.ru/]https://narkologicheskaya-klinika-24.ru/[/url] .
narkologicheskaya klinika_unSr
27 Oct 25 at 12:04 pm
купить диплом в новоалтайске [url=www.rudik-diplom12.ru/]купить диплом в новоалтайске[/url] .
Diplomi_tmPi
27 Oct 25 at 12:05 pm
анонимный наркологический центр [url=narkologicheskaya-klinika-24.ru]narkologicheskaya-klinika-24.ru[/url] .
narkologicheskaya klinika_gqSr
27 Oct 25 at 12:06 pm
https://businessdaily.click/thuoc/nuoc-muoi-rua-mui-la-gi-thanh-phan-chinh-la-gi-n436.html
PHP hook, building hooks in your application – Sjoerd Maessen blog at Sjoerd Maessen blog
https://businessdaily.click/thuoc/nuoc-muoi-rua-mui-la-gi-thanh-phan-chinh-la-gi-n436.html
27 Oct 25 at 12:07 pm
He has had more cordial, more productive, meetings with US President Donald Trump since that now-notorious encounter on February 28.
[url=https://tor-kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7instad.com]kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67yd onion[/url]
But for Ukrainian President Volodymyr Zelensky, today’s meeting at the White House will surely trigger awkward memories of that very public clash with the US President almost six months ago. Navigating the treacherous waters in which he finds himself today will be no easier.
[url=https://kraken5af44k24fwzohe6fvqfgxfsee4lgydb3ayzkfhlzqhuwlo33ad.org]kraken7jmgt7yhhe2c4iyilthnhcugfylcztsdhh7otrr6jgdw667pqd[/url]
Increasingly, it appears likely he will be told to give up land in exchange for some sort of security guarantees.
The land side of that “deal” will be obvious. It can be drawn on a map. Crimea: gone, says Trump. Donetsk: give all of it up, says Putin, apparently with Trump’s blessing.
But the security guarantees? That’s where far more challenging ideas, like credibility, come into play. Could Zelensky rely on the US to deliver on some NATO Article 5-type promise, to defend Ukraine if Russia breaches any peace agreement?
Putin himself might even see an opportunity to further weaken the West, by testing any such guarantees, confident they are a bluff he could call. But all that would be for the future.
For now, it looks like Zelensky will have to weigh up whether he could bring his country with him if he were to cede territory to Russia – some of it still in Ukrainian hands – or whether he and his people could bear the costs of potentially defying Trump a Nobel Peace Prize, and say no.
If he chose the latter, would the US President immediately end all remaining American support for Ukraine, in terms of military aid and intelligence sharing, for instance?
If that happened, to what extent could Zelensky’s European allies really step in and fill in the gaps left by any full US retreat?
It is an almost impossibly hard choice before him.
kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67yd onion
https://kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67yd0.com
Jamesbow
27 Oct 25 at 12:08 pm
kraken vk4
kraken обмен
Henryamerb
27 Oct 25 at 12:08 pm
kraken vk6
кракен зеркало
Henryamerb
27 Oct 25 at 12:09 pm
внутренняя гидроизоляция подвала [url=http://www.gidroizolyaciya-cena-7.ru]внутренняя гидроизоляция подвала[/url] .
gidroizolyaciya cena_mlSi
27 Oct 25 at 12:12 pm
I just couldn’t go away your site before suggesting that I extremely loved the
usual information an individual provide to your guests? Is gonna be again continuously
in order to inspect new posts
blackjack online real money
27 Oct 25 at 12:13 pm
We are a group of volunteers and opening a brand new scheme
in our community. Your site offered us with valuable information to work on. You have performed a formidable process and our
whole neighborhood will probably be thankful to you.
Here is my website; zinnat02
zinnat02
27 Oct 25 at 12:14 pm
kraken зеркало
kraken СПб
Henryamerb
27 Oct 25 at 12:14 pm
https://t.me/s/jw_1xbet/543
Georgerah
27 Oct 25 at 12:14 pm
https://t.me/jw_1xbet/817
Georgerah
27 Oct 25 at 12:15 pm
Je suis completement seduit par Sugar Casino, c’est une plateforme qui pulse avec energie. Les jeux proposes sont d’une diversite folle, proposant des jeux de cartes elegants. 100% jusqu’a 500 € + tours gratuits. Le service client est de qualite. Le processus est fluide et intuitif, par contre plus de promos regulieres ajouteraient du peps. Au final, Sugar Casino offre une aventure memorable. En extra la navigation est intuitive et lisse, amplifie l’adrenaline du jeu. Un avantage notable les evenements communautaires vibrants, qui motive les joueurs.
DГ©marrer maintenant|
Nightbyteor6zef
27 Oct 25 at 12:16 pm
address here
PHP hook, building hooks in your application – Sjoerd Maessen blog at Sjoerd Maessen blog
address here
27 Oct 25 at 12:19 pm
https://www.orkhonschool.edu.mn/single-post/2018/04/14/training-for-biology-teachers?commentId=701d10c4-b088-4825-b224-a01cbf1fb6e0
MichaelWoode
27 Oct 25 at 12:19 pm
платный наркологический диспансер москва [url=http://www.narkologicheskaya-klinika-24.ru]http://www.narkologicheskaya-klinika-24.ru[/url] .
narkologicheskaya klinika_zlSr
27 Oct 25 at 12:20 pm
кракен маркет
кракен зеркало
Henryamerb
27 Oct 25 at 12:20 pm
https://farmaciavivait.com/# Spedra prezzo basso Italia
Davidjealp
27 Oct 25 at 12:20 pm
медицинские приборы [url=https://medicinskoe–oborudovanie.ru/]medicinskoe–oborudovanie.ru[/url] .
medicinskoe oborydovanie_eqei
27 Oct 25 at 12:21 pm
Je ne me lasse pas de Ruby Slots Casino, il cree un monde de sensations fortes. Les titres proposes sont d’une richesse folle, avec des slots aux designs captivants. Il booste votre aventure des le depart. Le support client est irreprochable. Les retraits sont simples et rapides, occasionnellement des bonus plus frequents seraient un hit. En somme, Ruby Slots Casino merite une visite dynamique. De surcroit le site est fluide et attractif, ce qui rend chaque session plus excitante. Un atout les nombreuses options de paris sportifs, offre des recompenses regulieres.
DГ©marrer maintenant|
ironmindik1zef
27 Oct 25 at 12:21 pm
Как купить Альфа пвп в Пушном?Друзья, расскажите – присмотрел https://shockmusik.ru
. Цены нормальные, доставляют. Кто-нибудь имел дело с ними? Как у них с товаром?
Stevenref
27 Oct 25 at 12:23 pm
Howdy very nice site!! Guy .. Beautiful .. Wonderful .. I’ll bookmark your website and take the feeds additionally?
I’m happy to find numerous helpful information here within the
publish, we’d like work out extra strategies on this regard, thank you for sharing.
. . . . .
turkey visa on arrival for australian
27 Oct 25 at 12:23 pm
сколько стоит купить диплом медсестры [url=https://frei-diplom15.ru/]сколько стоит купить диплом медсестры[/url] .
Diplomi_khoi
27 Oct 25 at 12:27 pm
kraken vpn
kraken vk5
Henryamerb
27 Oct 25 at 12:28 pm
kraken vk6
кракен даркнет
Henryamerb
27 Oct 25 at 12:28 pm
He has had more cordial, more productive, meetings with US President Donald Trump since that now-notorious encounter on February 28.
[url=https://kraken5af44k24fwzohe6fvqfgxfsee4lgydb3ayzkfhlzqhuwlo33ad.shop]kraken5af44k24fwzohe6fvqfgxfsee4lgydb3ayzkfhlzqhuwlo33ad.onion[/url]
But for Ukrainian President Volodymyr Zelensky, today’s meeting at the White House will surely trigger awkward memories of that very public clash with the US President almost six months ago. Navigating the treacherous waters in which he finds himself today will be no easier.
[url=https://kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67yd.com]kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7instad.onion[/url]
Increasingly, it appears likely he will be told to give up land in exchange for some sort of security guarantees.
The land side of that “deal” will be obvious. It can be drawn on a map. Crimea: gone, says Trump. Donetsk: give all of it up, says Putin, apparently with Trump’s blessing.
But the security guarantees? That’s where far more challenging ideas, like credibility, come into play. Could Zelensky rely on the US to deliver on some NATO Article 5-type promise, to defend Ukraine if Russia breaches any peace agreement?
Putin himself might even see an opportunity to further weaken the West, by testing any such guarantees, confident they are a bluff he could call. But all that would be for the future.
For now, it looks like Zelensky will have to weigh up whether he could bring his country with him if he were to cede territory to Russia – some of it still in Ukrainian hands – or whether he and his people could bear the costs of potentially defying Trump a Nobel Peace Prize, and say no.
If he chose the latter, would the US President immediately end all remaining American support for Ukraine, in terms of military aid and intelligence sharing, for instance?
If that happened, to what extent could Zelensky’s European allies really step in and fill in the gaps left by any full US retreat?
It is an almost impossibly hard choice before him.
kraken3yvbvzmhytnrnuhsy772i6dfobofu652e27f5hx6y5cpj7rgyd
https://kraken3yvbvzmhytnrnuhsy772i6dfobofu652e27f5hx6y5cpj7rgydd.com
Thomasslete
27 Oct 25 at 12:29 pm
наркологические клиники москва [url=http://www.narkologicheskaya-klinika-24.ru]http://www.narkologicheskaya-klinika-24.ru[/url] .
narkologicheskaya klinika_pjSr
27 Oct 25 at 12:31 pm
kraken darknet market
kraken РФ
Henryamerb
27 Oct 25 at 12:33 pm
9signal.click explained in a blog post
PHP hook, building hooks in your application – Sjoerd Maessen blog at Sjoerd Maessen blog
9signal.click explained in a blog post
27 Oct 25 at 12:35 pm
He has had more cordial, more productive, meetings with US President Donald Trump since that now-notorious encounter on February 28.
[url=https://kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7instadl.com]kraken7jmgt7yhhe2c4iyilthnhcugfylcztsdhh7otrr6jgdw667pqd onion[/url]
But for Ukrainian President Volodymyr Zelensky, today’s meeting at the White House will surely trigger awkward memories of that very public clash with the US President almost six months ago. Navigating the treacherous waters in which he finds himself today will be no easier.
[url=https://kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67ydonion.info]kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67yd[/url]
Increasingly, it appears likely he will be told to give up land in exchange for some sort of security guarantees.
The land side of that “deal” will be obvious. It can be drawn on a map. Crimea: gone, says Trump. Donetsk: give all of it up, says Putin, apparently with Trump’s blessing.
But the security guarantees? That’s where far more challenging ideas, like credibility, come into play. Could Zelensky rely on the US to deliver on some NATO Article 5-type promise, to defend Ukraine if Russia breaches any peace agreement?
Putin himself might even see an opportunity to further weaken the West, by testing any such guarantees, confident they are a bluff he could call. But all that would be for the future.
For now, it looks like Zelensky will have to weigh up whether he could bring his country with him if he were to cede territory to Russia – some of it still in Ukrainian hands – or whether he and his people could bear the costs of potentially defying Trump a Nobel Peace Prize, and say no.
If he chose the latter, would the US President immediately end all remaining American support for Ukraine, in terms of military aid and intelligence sharing, for instance?
If that happened, to what extent could Zelensky’s European allies really step in and fill in the gaps left by any full US retreat?
It is an almost impossibly hard choice before him.
kraken6gf6o4rxewycqwjgfchzgxyfeoj5xafqbfm4vgvyaig2vmxvyd.onion
https://kraken4qzqnoi7ogpzpzwrxk7mw53n5i56loydwiyonu4owxsh4g67yd.com
ThomasNib
27 Oct 25 at 12:36 pm
Hi I am so delighted I found your web site, I really found you by error, while I was
browsing on Bing for something else, Anyhow I am here now
and would just like to say cheers for a marvelous post
and a all round enjoyable blog (I also love the theme/design), I don’t have
time to browse it all at the minute but I have bookmarked it and also
added your RSS feeds, so when I have time I will be
back to read more, Please do keep up the superb b.
assignment writing jobs in sri lanka
27 Oct 25 at 12:38 pm
анонимный наркологический центр [url=http://narkologicheskaya-klinika-24.ru/]http://narkologicheskaya-klinika-24.ru/[/url] .
narkologicheskaya klinika_omSr
27 Oct 25 at 12:38 pm
worldcityexpo.com – Found practical insights today; sharing this article with colleagues later.
Garth Warth
27 Oct 25 at 12:39 pm
кракен vk6
kraken darknet
Henryamerb
27 Oct 25 at 12:40 pm
наркологичка [url=www.narkologicheskaya-klinika-25.ru/]www.narkologicheskaya-klinika-25.ru/[/url] .
narkologicheskaya klinika_syPl
27 Oct 25 at 12:42 pm
Hi, i think that i saw you visited my blog thus i came to “return the favor”.I am trying to
find things to improve my site!I suppose its ok to use
some of your ideas!!
Charlie Kirk debates with a critical young woman
27 Oct 25 at 12:42 pm
Их репортаж о сексуальном насилии в 2016 году получил в том же
году Пулитцеровскую премию.
comedi-fun.tr.gg/Forum/topic-5-1-game.htm
27 Oct 25 at 12:42 pm
купить диплом провизора [url=https://www.rudik-diplom12.ru]купить диплом провизора[/url] .
Diplomi_ngPi
27 Oct 25 at 12:42 pm
https://www.diigo.com/item/note/8u6zw/p5rs?k=11e86fa38566d74c4544c1a3ac5eebc0
JeremyHep
27 Oct 25 at 12:44 pm
Write more, thats all I have to say. Literally, it seems as though
you relied on the video to make your point. You clearly know what youre talking about, why waste your intelligence on just posting videos to your
site when you could be giving us something informative to read?
fastest payout online casinos
27 Oct 25 at 12:44 pm
shopwithsmile – I like how colorful and positive the branding feels, really stands out.
Brittany Bosell
27 Oct 25 at 12:45 pm
He has had more cordial, more productive, meetings with US President Donald Trump since that now-notorious encounter on February 28.
[url=https://kraken5af44k24fwzohe6fvqfgxfsee4lgydb3ayzkfhlzqhuwlo33ad.org]kraken3yvbvzmhytnrnuhsy772i6dfobofu652e27f5hx6y5cpj7rgyd.onion[/url]
But for Ukrainian President Volodymyr Zelensky, today’s meeting at the White House will surely trigger awkward memories of that very public clash with the US President almost six months ago. Navigating the treacherous waters in which he finds himself today will be no easier.
[url=https://kraken2trfqodidvlh4a37cpzfrhdlfldhve5nf7njhumwr7instad.com]kraken2trfqodidvlh4aa337cpzfrhdlfldhve5nf7njhumwr7instad onion[/url]
Increasingly, it appears likely he will be told to give up land in exchange for some sort of security guarantees.
The land side of that “deal” will be obvious. It can be drawn on a map. Crimea: gone, says Trump. Donetsk: give all of it up, says Putin, apparently with Trump’s blessing.
But the security guarantees? That’s where far more challenging ideas, like credibility, come into play. Could Zelensky rely on the US to deliver on some NATO Article 5-type promise, to defend Ukraine if Russia breaches any peace agreement?
Putin himself might even see an opportunity to further weaken the West, by testing any such guarantees, confident they are a bluff he could call. But all that would be for the future.
For now, it looks like Zelensky will have to weigh up whether he could bring his country with him if he were to cede territory to Russia – some of it still in Ukrainian hands – or whether he and his people could bear the costs of potentially defying Trump a Nobel Peace Prize, and say no.
If he chose the latter, would the US President immediately end all remaining American support for Ukraine, in terms of military aid and intelligence sharing, for instance?
If that happened, to what extent could Zelensky’s European allies really step in and fill in the gaps left by any full US retreat?
It is an almost impossibly hard choice before him.
kraken5af44k24fwzohe6fvqfgxfsee4lgydb3ayzkfhlzqhuwlo33ad.onion
https://kraken3yvbvzmhytnrnuhsy772i6dfobofu652e27f5hx6y5cpj7rgydd.com
ScottWorse
27 Oct 25 at 12:47 pm
Hi! I simply want to offer you a big thumbs up for the great info you’ve
got right here on this post. I will be returning to your blog for more soon.
First Lady Melania Trump delivers a speech about Charlie Kirk
27 Oct 25 at 12:48 pm
kraken зеркало
кракен vk6
Henryamerb
27 Oct 25 at 12:48 pm
Thank you a bunch for sharing this with all folks you really
know what you’re speaking about! Bookmarked. Please additionally discuss with my web
site =). We may have a hyperlink trade contract among us
Charlie Kirk debates with a critical young woman
27 Oct 25 at 12:48 pm
Very good info. Lucky me I came across your blog by chance (stumbleupon).
I’ve book marked it for later!
The World Mourns: Global Grief After the Assassination of Charlie Kirk
27 Oct 25 at 12:49 pm
Этот информационный материал привлекает внимание множеством интересных деталей и необычных ракурсов. Мы предлагаем уникальные взгляды на привычные вещи и рассматриваем вопросы, которые волнуют общество. Будьте в курсе актуальных тем и расширяйте свои знания!
Полезно знать – https://marathi.deccanquest.com/?p=31
JamesCet
27 Oct 25 at 12:49 pm