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!
Fiquei impressionado com PlayPIX Casino, e uma plataforma que vibra com intensidade. A selecao de jogos e fenomenal, com slots de design inovador. Com uma oferta inicial para impulsionar. O suporte ao cliente e excepcional, sempre pronto para resolver. Os ganhos chegam sem atraso, no entanto recompensas extras seriam eletrizantes. Resumindo, PlayPIX Casino e essencial para jogadores para jogadores em busca de adrenalina ! Tambem a plataforma e visualmente espetacular, facilita uma imersao total. Igualmente impressionante o programa VIP com niveis exclusivos, oferece recompensas continuas.
Ler os detalhes|
RioFlareZ3zef
13 Oct 25 at 12:18 pm
The trial of Bryan Kohberger – the man who brutally murdered four University of Idaho students inside their off-campus home – ended in July before it ever truly began when he accepted a plea deal that saw him sentenced to four consecutive life terms in prison without the possibility of an appeal or parole.
Kohberger sat impassively throughout the hearing as the loved ones of each of the four students whose lives he so callously ended repeatedly asked him the same question: Why?
[url=http://trip-skan45.cc]трипскан вход[/url]
And when he was finally given the opportunity to answer their questions, he said, “I respectfully decline.”
That decision further fueled the mystery around his motive for murdering Xana Kernodle, Madison Mogen, Ethan Chapin and Kaylee Goncalves.
“There’s no reason for these crimes that could approach anything resembling rationality,” Idaho District Judge Steven Hippler said during Kohberger’s sentencing. “The more we try to extract a reason, the more power and control we give to him.”
But, he added, investigators and researchers may wish to study his actions – if only to learn how to prevent similar crimes from occurring in the future.
http://trip-skan45.cc
трипскан сайт
Indeed, academics and former FBI profilers told CNN the challenge of unravelling the criminal mind of a man like Bryan Kohberger is enticing. And while his trial may be over, in many ways, the story of what can be learned from his crimes may have only just begun.
“We want to squeeze any silver lining that we can out of these tragedies,” said Molly Amman, a retired profiler who spent years leading the FBI’s Behavioral Threat Assessment Center.
“The silver lining is anything we can use to prevent another crime. It starts with learning absolutely, positively everything about the person and the crime that we possibly can.”
CNN
Only Kohberger knows
Even seasoned police officers who arrived at 1122 King Road on November 13, 2022, struggled to process the brutality of the crime scene.
All four victims had been ruthlessly stabbed to death before the attacker vanished through the kitchen’s sliding glass door and into the night.
“The female lying on the left half of the bed … was unrecognizable,” one officer would later write of the attack that killed Kaylee Goncalves. “I was unable to comprehend exactly what I was looking at while trying to discern the nature of the injuries.”
Initial interviews with the two surviving housemates gave investigators a loose timeline and a general description of the killer – an athletic, White male who wore a mask that covered most of his face – but little else.
Police later found a Ka-Bar knife sheath next to Madison’s body that would prove to be critical in capturing her killer.
One of the surviving housemates told police about a month before the attacks, Kaylee saw “a dark figure staring at her from the tree line when she took her dog Murphy out to pee.”
“There has been lighthearted talk and jokes made about a stalker in the past,” the officer noted. “All the girls were slightly nervous about it being a fact, though.”
But after years of investigating the murders, detectives told CNN they were never able to establish a connection between Kohberger and any of the victims, or a motive.
Kohberger is far from the first killer to deny families and survivors the catharsis that comes with confessing, in detail, to his crimes. But that, former FBI profilers tell CNN, is part of what makes the prospect of studying him infuriating and intriguing.
Wesleyzep
13 Oct 25 at 12:18 pm
Howdy! This is my first visit to your blog!
We are a team of volunteers and starting a new project in a community in the same niche.
Your blog provided us useful information to work on. You have
done a marvellous job!
Lucent Markbit
13 Oct 25 at 12:19 pm
В данной обзорной статье представлены интригующие факты, которые не оставят вас равнодушными. Мы критикуем и анализируем события, которые изменили наше восприятие мира. Узнайте, что стоит за новыми открытиями и как они могут изменить ваше восприятие реальности.
Интересует подробная информация – https://www.burrosdomagoito.com/best-avada-bakery-products-of-2019
RobertRAPPY
13 Oct 25 at 12:20 pm
взять в аренду экскаватор погрузчик в москве [url=https://www.arenda-ekskavatora-pogruzchika-cena-2.ru]https://www.arenda-ekskavatora-pogruzchika-cena-2.ru[/url] .
arenda ekskavatora pogryzchika cena_host
13 Oct 25 at 12:20 pm
«Как отмечает врач-нарколог Андрей Николаевич Селиванов, «своевременный визит специалиста на дом позволяет избежать тяжёлых осложнений и ускоряет стабилизацию состояния»».
Получить больше информации – [url=https://narkolog-na-dom-sankt-peterburg14.ru/]нарколог на дом срочно[/url]
Jerrysmism
13 Oct 25 at 12:20 pm
кто нибудь работает медсестрой по купленному диплому [url=www.frei-diplom14.ru/]www.frei-diplom14.ru/[/url] .
Diplomi_cioi
13 Oct 25 at 12:21 pm
aussenseiter wetten gratis guthaben – rhodopesfairytales2019.Discovered-spaces.org, strategie
rhodopesfairytales2019.Discovered-spaces.org
13 Oct 25 at 12:21 pm
We stumbled over here by a different website and thought I may as well check things out.
I like what I see so now i’m following you. Look forward to going over your web page yet again.
best online casino slots
13 Oct 25 at 12:21 pm
аренда экскаватора погрузчика на месяц [url=http://arenda-ekskavatora-pogruzchika-cena-2.ru]http://arenda-ekskavatora-pogruzchika-cena-2.ru[/url] .
arenda ekskavatora pogryzchika cena_tvst
13 Oct 25 at 12:24 pm
Viagra online UK: British online pharmacy Viagra – British online pharmacy Viagra
JamesDes
13 Oct 25 at 12:25 pm
Такая структура делает лечение последовательным и предсказуемым, повышая шансы на положительный исход.
Подробнее тут – [url=https://narkologicheskaya-klinika-v-omske0.ru/]наркологическая клиника клиника помощь омск[/url]
Davidfarie
13 Oct 25 at 12:26 pm
Hi there, this weekend is fastidious for me, as
this time i am reading this great educational article here at my residence.
Buy Etizolam Benzodiazepine
13 Oct 25 at 12:26 pm
https://telegra.ph/Videoregistrator-s-radar-detektorom-kupit-v-tule-10-13-3
GregoryRoutt
13 Oct 25 at 12:29 pm
Компьютеры теперь везде kra 40 cc kra 40 at kra 40at
RichardPep
13 Oct 25 at 12:30 pm
Программы лечения формируются индивидуально и включают различные методы, направленные на физическое и психическое восстановление пациента.
Подробнее можно узнать тут – http://
RobertBlugs
13 Oct 25 at 12:30 pm
beste die besten sportwetten anbieter
anbieter deutschland
die besten sportwetten anbieter
13 Oct 25 at 12:30 pm
медсестра которая купила диплом врача [url=https://frei-diplom14.ru/]медсестра которая купила диплом врача[/url] .
Diplomi_yxoi
13 Oct 25 at 12:32 pm
Prednisone is a corticosteroid medication commonly prescribed to reduce inflammation and manage a variety of conditions, including allergies, asthma, arthritis, and autoimmune diseases. It works by suppressing the immune system’s response, helping to relieve symptoms and improve overall health. For those seeking an affordable and reliable option, generic prednisone is widely available. If you’re considering purchasing this medication, you can learn more and find trusted sources at trusted sources for prednisone. Always consult your healthcare provider before starting or changing any medication regimen.
cost of cheap prednisone tablets
13 Oct 25 at 12:37 pm
куплю диплом младшей медсестры [url=https://frei-diplom15.ru]https://frei-diplom15.ru[/url] .
Diplomi_kzoi
13 Oct 25 at 12:37 pm
перепланировка офиса согласование [url=https://www.pereplanirovka-nezhilogo-pomeshcheniya8.ru]https://www.pereplanirovka-nezhilogo-pomeshcheniya8.ru[/url] .
pereplanirovka nejilogo pomesheniya_ygki
13 Oct 25 at 12:37 pm
Современная индустрия доставки грузов предлагает широкий спектр транспортных решений, адаптированных под различные типы грузов, расстояния и сроки доставки.
Автомобильные перевозки остаются наиболее гибким и доступным способом доставки на короткие и средние расстояния. Железнодорожный транспорт идеально подходит для перевозки больших объемов сырья и промышленных товаров на дальние расстояния.
Морские перевозки, несмотря на свою протяженность во времени, остаются самым экономичным способом транспортировки грузов между континентами. Авиаперевозки обеспечивают максимально быструю доставку, но являются наиболее дорогим вариантом. А какие [url=https://gpcdoerfer2.com]грузовые перевозки используете Вы?[/url]
Johnnyphets
13 Oct 25 at 12:38 pm
аренда экскаватора в москве цена [url=https://arenda-ekskavatora-pogruzchika-cena-2.ru/]аренда экскаватора в москве цена[/url] .
arenda ekskavatora pogryzchika cena_qest
13 Oct 25 at 12:38 pm
Listen up, steady pom ρi pі, math remains one
іn the leading disciplines іn Junior College, laying foundation fߋr A-Level advanced math.
Ӏn addition from establishment amenities, concentrate ᧐n maths fߋr prevent
common errors lіke inattentive mistakes at exams.
Mums and Dads, competitive mode engaged lah, robust primary maths guides f᧐r superior scientific grasp аs well as construction goals.
Temasek Junior College influences pioneers tһrough rigorous
academics and ethical worths, mixing custom ѡith innovation. Proving ground ɑnd electives in languages ɑnd arts promote deep knowing.
Lively ϲo-curriculars develop teamwork аnd creativity.
International partnerships enhance global competence.
Alumni grow іn prominent organizations, embodying excellence аnd service.
Dunman Ηigh School Junior College identifies іtself theough
іts exceptional bilingual education structure, ԝhich expertly merges Eastern cultural knowledge
ѡith Western analytical approaches, nurturing trainees іnto flexible, culturally delicate thinkers ᴡho are skilled at bridging varied perspectives іn a globalized world.
The school’s integrated ѕix-уear program еnsures a smooth ɑnd enriched transition, including specialized curricula іn STEM
fields witrh access to advanced гesearch study labs ɑnd in liberal
arts with immersive language immersion modules,
ɑll designed to promote intellectual depth ɑnd ingenious analytical.
Ιn ɑ nurturing and unified school environment, trainees actively tɑke ⲣart in leadership
functions, imaginative endeavors ⅼike argument cluƅs and cultural festivals, аnd neighborhood projects tһat improve their social awareness and
collaborativ skills. Ƭhе college’s robust worldwide immersion efforts,
consisting ߋf student exchanges with partner schools іn Asia and Europe, аs
welⅼ as worldwide competitors, offer hands-оn experiences thɑt sharpen cross-cultural proficiencies аnd prepare trainees fоr growing
in multicultural settings. Witһ а consistent record ᧐f exceptional
scholastic efficiency, Dunman Hіgh School Junior College’ѕ graduates
protected positionings in leading universities worldwide,
exemplifying tһe institution’s commitment to promoting
scholastic rigor, individual excellence, аnd a long-lasting
enthusiasm for knowing.
Parents, kiasu approach engaged lah, solid primary
maths leads fߋr bettеr scientific grasp ɑnd construction goals.
Goodness, гegardless tһough school remains atas, mathematics serves ɑs the make-or-break
subject fօr cultivates confidence in figures.
Hey hey, Singapore folks, maths іs ⲣerhaps the extremely important primary topic, encouraging creativity іn probⅼem-solving
in innovative professions.
Аvoid mess aroսnd lah, pair a excellent Junior College alongside maths proficiency іn order to guarantee hіgh A Levels results and seamless shifts.
Kiasu parents аlways push fоr A in Math bеcаuѕe
іt’s a gateway tο prestigious degrees ⅼike medicine.
Parents, kiasu approach оn lah, solid primary
math guides tⲟ superior science comprehension ρlus engineering goals.
Wah, math serves ɑs the foundation stone іn primary schooling, helping youngsters ѡith spatial reasoning tо architecture routes.
Нere is my homepage – Anglo-Chinese Junior College
Anglo-Chinese Junior College
13 Oct 25 at 12:45 pm
аренда экскаваторов погрузчиков [url=http://arenda-ekskavatora-pogruzchika-cena-2.ru]аренда экскаваторов погрузчиков[/url] .
arenda ekskavatora pogryzchika cena_xmst
13 Oct 25 at 12:47 pm
купить медицинский диплом медсестры [url=http://frei-diplom14.ru/]купить медицинский диплом медсестры[/url] .
Diplomi_bpoi
13 Oct 25 at 12:50 pm
перепланировка в нежилом помещении [url=pereplanirovka-nezhilogo-pomeshcheniya11.ru]перепланировка в нежилом помещении[/url] .
pereplanirovka nejilogo pomesheniya_zxer
13 Oct 25 at 12:50 pm
В этом интересном тексте собраны обширные сведения, которые помогут вам понять различные аспекты обсуждаемой темы. Мы разбираем детали и факты, делая акцент на важности каждого элемента. Не упустите возможность расширить свои знания и взглянуть на мир по-новому!
Откройте для себя больше – https://gem-c.jp/?p=447
Davidrurge
13 Oct 25 at 12:52 pm
บทความนี้ อ่านแล้วเข้าใจเรื่องนี้มากขึ้น ครับ
ผม เพิ่งเจอข้อมูลเกี่ยวกับ ข้อมูลเพิ่มเติม
ดูต่อได้ที่ ambslot
น่าจะถูกใจใครหลายคน
มีการสรุปเนื้อหาไว้อย่างดี
ขอบคุณที่แชร์ คอนเทนต์ดีๆ นี้
หวังว่าจะมีการอัปเดตเนื้อหาเพิ่มเติมเร็วๆ นี้
ambslot
13 Oct 25 at 12:52 pm
стоимость услуг экскаватора [url=www.arenda-ekskavatora-pogruzchika-cena-2.ru/]стоимость услуг экскаватора[/url] .
arenda ekskavatora pogryzchika cena_cxst
13 Oct 25 at 12:53 pm
https://telegra.ph/Autel-evo-2-v3-kupit-10-13
Marvinkib
13 Oct 25 at 12:56 pm
вывод из запоя круглосуточно челябинск
vivod-iz-zapoya-chelyabinsk012.ru
вывод из запоя цена
alkogolizmchelyabinskNeT
13 Oct 25 at 1:00 pm
аренда мини экскаватора с водителем [url=https://www.arenda-mini-ekskavatora-v-moskve-2.ru]аренда мини экскаватора с водителем[/url] .
arenda mini ekskavatora v moskve_gpKt
13 Oct 25 at 1:01 pm
Психотерапия во Владимире в клинике «Новая Эра» проводится высококвалифицированными специалистами с большим опытом работы в сфере зависимостей.
Получить дополнительную информацию – [url=https://lechenie-narkomanii-vladimir0.ru/]лечение наркомании на дому владимир[/url]
MarvinVab
13 Oct 25 at 1:03 pm
карниз с приводом [url=www.elektrokarnizy797.ru]www.elektrokarnizy797.ru[/url] .
elektrokarnizi_rqMl
13 Oct 25 at 1:04 pm
Snagged more $MTAUR; referrals pay. Presale’s value jumps. Minotaur customizable.
minotaurus token
WilliamPargy
13 Oct 25 at 1:05 pm
Специалисты, выезжающие на дом, оснащены всем необходимым для оказания полноценной помощи. Это переносное диагностическое оборудование, препараты для снятия симптомов абстиненции, инфузионные растворы, противосудорожные средства, седативные препараты и витаминные комплексы. Наличие мини-аптечки позволяет адаптировать лечение прямо на месте и избежать лишних госпитализаций.
Подробнее можно узнать тут – [url=https://narkologicheskaya-pomoshh-vladimir0.ru/]вызвать наркологическую помощь[/url]
Russellsmugh
13 Oct 25 at 1:05 pm
стоимость услуг экскаватора погрузчика [url=https://www.arenda-ekskavatora-pogruzchika-cena-2.ru]стоимость услуг экскаватора погрузчика[/url] .
arenda ekskavatora pogryzchika cena_tcst
13 Oct 25 at 1:06 pm
I could not refrain from commenting. Perfectly written!
spot on collar
13 Oct 25 at 1:09 pm
https://aispec.federchimica.it/news/2024/05/23/giornata-mapic
https://aispec.federchimica.it/news/2024/05/23/giornata-mapic
13 Oct 25 at 1:10 pm
Ukrainian President Volodymyr Zelensky condemned Russian attacks on the Ukrainian regions of Kharkiv, Zaporizhzhia and Sumy on Monday, saying that the Kremlin intends to “humiliate diplomatic efforts” just hours before European leaders visit the White House.
[url=https://kra—42–cc.ru]kra38 at[/url]
“The Russian war machine continues to destroy lives despite everything,” Zelensky said in a statement, hours before he’s due to meet US President Donald Trump in the Oval Office. “That is precisely why we are seeking assistance to put an end to the killings. That is why reliable security guarantees are required. That is why Russia should not be rewarded for its participation in this war.”
[url=https://kra-42—cc.ru]kra42 сс[/url]
“Everyone seeks dignified peace and true security,” the Ukrainian president said. “And at this very moment, the Russians are attacking Kharkiv, Zaporizhzhia, the Sumy region, and Odesa, destroying residential buildings and our civilian infrastructure.”
At least seven people were killed in Russia’s attack? on Kharkiv and a further three killed in the ballistic missile strike on the city of Zaporizhzhia, with scores more injured, according to Ukrainian authorities.
“This was a demonstrative and cynical Russian strike,” Zelensky added.
kra38 at
https://kra42at.com
Rafaelwem
13 Oct 25 at 1:11 pm
After looking over a number of the blog posts on your site,
I really like your technique of writing a blog.
I saved it to my bookmark webpage list and will be
checking back soon. Take a look at my web site too and let me know what you think.
Xanax Online USA
13 Oct 25 at 1:14 pm
wett app mit startguthaben
my blog … beste wetten anbieter
beste wetten anbieter
13 Oct 25 at 1:14 pm
аренда экскаватора погрузчика стоимость [url=www.arenda-ekskavatora-pogruzchika-cena-2.ru]www.arenda-ekskavatora-pogruzchika-cena-2.ru[/url] .
arenda ekskavatora pogryzchika cena_dast
13 Oct 25 at 1:15 pm
Автоматические гаражные ворота давно перестали быть роскошью и стали необходимым элементом комфортной жизни. Наши автоматические ворота сочетают надёжность проверенных европейских механизмов с элегантным дизайном, который гармонично впишется в архитектуру любого здания. Мы предлагаем полный цикл услуг: от профессиональной консультации и точного замера до установки под ключ и гарантийного обслуживания. Доверьте безопасность своего дома профессионалам — получите бесплатный расчёт стоимости уже сегодня: Автоматические ворота
CraigStaps
13 Oct 25 at 1:19 pm
перепланировка нежилого помещения в нежилом здании [url=http://pereplanirovka-nezhilogo-pomeshcheniya10.ru/]перепланировка нежилого помещения в нежилом здании[/url] .
pereplanirovka nejilogo pomesheniya_ppSr
13 Oct 25 at 1:21 pm
карниз для штор с электроприводом [url=https://karniz-elektroprivodom.ru]карниз для штор с электроприводом[/url] .
karniz elektroprivodom shtor kypit_dgei
13 Oct 25 at 1:21 pm
куплю диплом медсестры в москве [url=http://www.frei-diplom14.ru]куплю диплом медсестры в москве[/url] .
Diplomi_wgoi
13 Oct 25 at 1:21 pm
Hey I know this is off topic but I was wondering if you knew of
any widgets I could add to my blog that automatically tweet my newest twitter updates.
I’ve been looking for a plug-in like this for quite some time and
was hoping maybe you would have some experience with something like this.
Please let me know if you run into anything.
I truly enjoy reading your blog and I look forward to
your new updates.
Finqix Lux Legit Or Not
13 Oct 25 at 1:22 pm
https://telegra.ph/Futbolka-bronezhilet-kupit-10-13-2
Marvinkib
13 Oct 25 at 1:22 pm