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!
спорт сегодня [url=https://novosti-sporta-7.ru/]спорт сегодня[/url] .
novosti sporta_jfOt
20 Oct 25 at 1:03 am
1win uz [url=https://1win5510.ru/]1win uz[/url]
1win_uz_rpsi
20 Oct 25 at 1:05 am
купить диплом в златоусте [url=www.rudik-diplom6.ru]купить диплом в златоусте[/url] .
Diplomi_qqKr
20 Oct 25 at 1:05 am
I blog often and I really thank you for
your content. This great article has really peaked my interest.
I’m going to book mark your blog and keep checking for new details about once a
week. I opted in for your RSS feed too.
เว็บสล็อต
20 Oct 25 at 1:07 am
купить диплом в бийске [url=rudik-diplom14.ru]купить диплом в бийске[/url] .
Diplomi_laea
20 Oct 25 at 1:07 am
профессиональная гидроизоляция [url=https://www.ustroystvo-gidroizolyacii.ru]https://www.ustroystvo-gidroizolyacii.ru[/url] .
ystroistvo gidroizolyacii_ykea
20 Oct 25 at 1:11 am
Здесь обеспечивают комплексную помощь: от детокса до поддержки организма и психики.
Изучить вопрос глубже – [url=https://vyvod-iz-zapoya-v-stacionare23.ru/]нарколог вывод из запоя в стационаре нижний новгород[/url]
Francisitedo
20 Oct 25 at 1:12 am
наркологическая служба на дом [url=https://narkolog-na-dom-1.ru]https://narkolog-na-dom-1.ru[/url] .
narkolog na dom_gukt
20 Oct 25 at 1:12 am
Before committing, read detailed antidetect browser reviews. User testimonials and expert analysis provide insights into features like profile isolation, proxy support, and stability for your workflow.
DouglasJasse
20 Oct 25 at 1:12 am
Для восстановления после запоя выбирайте стационар клиники «Детокс» в Сочи. Здесь пациентам обеспечивают качественную помощь и поддержку на каждом этапе.
Получить больше информации – [url=https://vyvod-iz-zapoya-sochi24.ru/]vyvod-iz-zapoya-sochi24.ru/[/url]
Bryankax
20 Oct 25 at 1:13 am
Unlike conventional stock exchanges, the forex market operates 24 hours a day, offering constant opportunities for trading various money sets.
Tools like the forex heatmap can show indispensable
by visually representing currency performance across the market range.
By examining this information, investors can develop effective strategies that align with market conditions and take advantage
of on short-term changes.
market trading
20 Oct 25 at 1:13 am
где можно купить диплом техникум [url=http://www.frei-diplom9.ru]где можно купить диплом техникум[/url] .
Diplomi_uiea
20 Oct 25 at 1:16 am
Стационарная детоксикация от алкоголя в Воронеже — восстановление организма под наблюдением специалистов. Мы проводим процедуры очищения организма от токсинов, восстанавливая физическое и психоэмоциональное состояние пациента.
Детальнее – http://vyvod-iz-zapoya-v-stacionare-voronezh24.ru
Stuartbooms
20 Oct 25 at 1:17 am
анонимный вывод из запоя в москве [url=https://vyvod-iz-zapoya-9.ru/]vyvod-iz-zapoya-9.ru[/url] .
vivod iz zapoya_boEl
20 Oct 25 at 1:17 am
Дизайнерский ремонт: искусство преображения пространства
Дизайн интерьера играет важную роль в создании комфортной и уютной атмосферы в доме. Сегодня мы поговорим о таком понятии, как дизайнерский ремонт, который позволяет превратить обычное жилье в уникальное пространство, отражающее индивидуальность владельца.
[url=https://designapartment.ru]дизайнерский ремонт виллы под ключ москва[/url]
Что такое дизайнерский ремонт?
Дизайнерский ремонт — это комплекс работ, направленных на создание оригинального дизайна помещения. Это не просто обновление отделки, а полноценный творческий процесс, включающий разработку концепции, подбор материалов и мебели, а также реализацию проекта.
Ключевые особенности дизайнерского ремонта:
[url=https://designapartment.ru]дизайнерский ремонт квартиры под ключ[/url]
– Индивидуальный подход к каждому проекту.
– Использование качественных материалов и современных технологий.
– Создание уникального стиля, соответствующего вкусам заказчика.
– Оптимизация пространства для максимального комфорта и функциональности.
Виды дизайнерских ремонтов
[url=https://designapartment.ru]дизайнерский ремонт однокомнатной квартиры[/url]
Существует несколько видов дизайнерских ремонтов, каждый из которых имеет свои особенности и преимущества.
#1 Дизайнерский ремонт квартиры
Это наиболее распространенный вид ремонта, подходящий для тех, кто хочет обновить интерьер своей городской квартиры. Специалисты разрабатывают проект, учитывая размеры помещений, пожелания клиента и бюджет. Такой ремонт включает перепланировку, замену коммуникаций, отделочные работы и декорирование.
Пример дизайна: светлая гостиная с панорамными окнами, минималистичный дизайн кухни и спальни в стиле лофт.
#2 Дизайнерский ремонт дома
Такой ремонт предполагает полное преобразование жилого дома, начиная от фундамента и заканчивая крышей. Здесь важно учитывать архитектурные особенности здания, климатические условия региона и предпочтения владельцев. Часто используется экодизайн, натуральные материалы и энергосберегающие технологии.
Пример дизайна: просторный холл с камином, стеклянная веранда с видом на сад, спальня в пастельных тонах.
#3 Дизайнерский ремонт виллы
Ремонт вилл требует особого подхода, поскольку такие объекты часто расположены в живописных местах и имеют большую площадь. Важно сохранить гармонию с окружающей средой, используя природные материалы и цвета. Особое внимание уделяется созданию зон отдыха, бассейнов и садов.
Пример дизайна: роскошная вилла с бассейном, открытая терраса с видами на море, спальная зона в тропическом стиле.
#4 Дизайнерский ремонт коттеджа
Коттедж отличается от обычного дома наличием придомового участка и возможностью организации дополнительных функциональных зон. Ремонт коттеджей включает работу над фасадом, ландшафтом и внутренним пространством. Стили могут варьироваться от классики до хай-тека.
Пример дизайна: двухэтажный коттедж с мансардой, гостиная-столовая в скандинавском стиле, детская комната с игровой зоной.
#5 Дизайнерский ремонт пентхауса
Пентхаус — это элитное жилье, расположенное на верхних этажах зданий с панорамными видами. Для такого типа недвижимости характерны высокие потолки, большие окна и эксклюзивные элементы декора. Проектирование пентхауса требует учета особенностей конструкции здания и пожеланий клиентов относительно приватности и удобства.
Пример дизайна: современный пентхаус с открытой планировкой, кабинет с видом на город, зона отдыха с джакузи.
Заключение
Дизайнерский ремонт — это возможность создать идеальное пространство для жизни и отдыха. Независимо от того, хотите ли вы обновить квартиру, дом, виллу, коттедж или пентхаус, профессиональный подход гарантирует вам комфорт и эстетическое удовольствие на долгие годы.
https://designapartment.ru
дизайнерский ремонт пентхауса
Keithquems
20 Oct 25 at 1:18 am
Unlike conventional supply exchanges, the forex market runs 24 hours
a day, supplying constant possibilities for trading numerous currency pairs.
Tools like the forex heatmap can verify very useful by
aesthetically representing currency efficiency throughout the market range.
By evaluating this data, investors can develop efficient methods that line up with market conditions and
utilize on short-term variations.
外匯 圖
20 Oct 25 at 1:18 am
https://www.grepmed.com/ugoglebaf
Anthonycam
20 Oct 25 at 1:19 am
вывести из запоя цена москва [url=http://vyvod-iz-zapoya-9.ru/]http://vyvod-iz-zapoya-9.ru/[/url] .
vivod iz zapoya_ipEl
20 Oct 25 at 1:21 am
купить диплом с реестром вуза [url=www.frei-diplom3.ru]купить диплом с реестром вуза[/url] .
Diplomi_hyKt
20 Oct 25 at 1:21 am
The combination of typical market evaluation with an expanding scheme of modern-day technological tools notes a considerable development in the
trading globe. Traders currently have the ability to combine chart-based evaluation with real-time data feeds and algorithmic
trading systems, creating an advanced trading environment.
Mathematical trading, utilizing computer system programs to implement trades based upon predefined approaches, has actually acquired immense traction, often outmatching human investors in rate and precision. As algorithms procedure substantial amounts of information to determine patterns and carry out orders, they add to enhanced market performance yet additionally elevate problems regarding the possibility for market control
and sudden variations.
منصة تداول عربية
20 Oct 25 at 1:22 am
cost cheap dapsone without insurance
can i purchase dapsone no prescription
20 Oct 25 at 1:23 am
купить диплом в кунгуре [url=https://rudik-diplom6.ru/]https://rudik-diplom6.ru/[/url] .
Diplomi_acKr
20 Oct 25 at 1:23 am
сколько стоит купить диплом колледжа [url=http://frei-diplom10.ru/]сколько стоит купить диплом колледжа[/url] .
Diplomi_zgEa
20 Oct 25 at 1:23 am
best alarm clock radio cd player [url=http://alarm-radio-clocks.com]http://alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_apOa
20 Oct 25 at 1:25 am
Unlike traditional stock exchanges, the forex market runs 24 hours a day,
giving consistent chances for trading numerous currency pairs.
Tools like the forex heatmap can prove vital by visually standing
for currency efficiency across the market range. By evaluating this information,
traders can develop reliable methods that line up with market conditions and
exploit on short-term fluctuations.
البورصة العالمية
20 Oct 25 at 1:26 am
купить диплом колледжа стоит пять плюс [url=http://www.frei-diplom9.ru]http://www.frei-diplom9.ru[/url] .
Diplomi_shea
20 Oct 25 at 1:28 am
Промокод 1xBet на сегодня и бесплатно. Промокоды 1хБет 2026 требуется использовать те, которые предоставят игрокам самые лучшие бонусы. Каждый из них позволяет увеличить первый депозит в 2 раза, максимальная сумма увеличения – 100 долларов. Большое количество промокодов — одна из причин того, что на сайте регистрируется огромное количество новых игроков каждый день. На данный момент их количество превышает пятьсот тысяч уникальных пользователей каждый день. Действующие промокоды позволяют увеличить размер приветственных баллов до 32500 рублей. Для этого нужно лишь активировать при регистрации имеющийся код, скопировав его в соответствующее поле. Букмекерская контора 1хБет является одной из самых влиятельных на рынке игорного бизнеса в России и не нуждается в особом представлении. Впрочем, букмекер продолжает держать статус одного из самых щедрых и предлагает своим клиентам воспользоваться промокодами для халявы, о которой я более подробно расскажу в этом материале 1xbet промокод на сегодня.
Stanleyvonna
20 Oct 25 at 1:30 am
On the planet of forex trading, non-farm payroll (NFP) records act as a
substantial financial indication that affects
market activities. Released on the initial Friday of every month by
the Bureau of Labor Statistics in the United States, the NFP
report highlights employment modifications in different sectors, omitting ranches, federal
government, and a few other job categories.
Due to the fact that they give insight into the health of the U.S.
economic situation, market participants carefully see these
releases. Favorable NFP figures usually indicate an expanding economic situation, which can cause a stronger buck and
punctual modifications in trading placements.
Alternatively, disappointing numbers can bring about
volatility in the forex market, causing traders to reassess their strategies.
Successful traders not only watch on NFP records yet additionally keep track
of just how such launches connect with other financial data indicate form their total market view.
موقع ماركت
20 Oct 25 at 1:31 am
диплом колледжа 2016 купить [url=frei-diplom11.ru]frei-diplom11.ru[/url] .
Diplomi_tjsa
20 Oct 25 at 1:31 am
технология устройства гидроизоляции [url=ustroystvo-gidroizolyacii.ru]ustroystvo-gidroizolyacii.ru[/url] .
ystroistvo gidroizolyacii_xpea
20 Oct 25 at 1:33 am
kraken tor
kraken 2025
JamesDaync
20 Oct 25 at 1:33 am
1win bonus aktivatsiya [url=https://1win5510.ru]1win bonus aktivatsiya[/url]
1win_uz_rusi
20 Oct 25 at 1:34 am
нарколог психолог [url=www.narkologicheskaya-klinika-20.ru]www.narkologicheskaya-klinika-20.ru[/url] .
narkologicheskaya klinika _lqPr
20 Oct 25 at 1:34 am
1win ilova ishlamayapti [url=http://1win5509.ru/]http://1win5509.ru/[/url]
1win_uz_soKt
20 Oct 25 at 1:36 am
ночной нарколог на дом [url=www.narkolog-na-dom-1.ru]www.narkolog-na-dom-1.ru[/url] .
narkolog na dom_ibkt
20 Oct 25 at 1:37 am
устройство гидроизоляции [url=https://ustroystvo-gidroizolyacii.ru]https://ustroystvo-gidroizolyacii.ru[/url] .
ystroistvo gidroizolyacii_xoea
20 Oct 25 at 1:37 am
Thank you for the good writeup. It in fact was a amusement account it.
Look advanced to far added agreeable from you!
However, how can we communicate?
martin casino вывод средств
20 Oct 25 at 1:41 am
купить диплом в ноябрьске [url=https://www.rudik-diplom5.ru]купить диплом в ноябрьске[/url] .
Diplomi_soma
20 Oct 25 at 1:41 am
купить старый диплом техникума пять плюс [url=https://frei-diplom9.ru/]купить старый диплом техникума пять плюс[/url] .
Diplomi_klea
20 Oct 25 at 1:41 am
The economic landscape is substantial and ever-evolving,
driven by numerous market patterns and trading strategies.
One of the essential elements that financiers and
traders continually check out is the idea of “market,” which incorporates different alternatives like supply markets, products, and international exchange markets.
CFDs, or Contracts for Difference, make it possible for investors to speculate on cost activities without actually owning
the underlying possession, developing possibilities for revenue regardless of market
conditions.
ماركت كوم
20 Oct 25 at 1:43 am
http://pilloleverdi.com/# dove comprare Cialis in Italia
MickeySum
20 Oct 25 at 1:44 am
купить диплом о высшем образовании [url=rudik-diplom14.ru]купить диплом о высшем образовании[/url] .
Diplomi_ikea
20 Oct 25 at 1:44 am
легальный диплом купить [url=https://www.frei-diplom2.ru]легальный диплом купить[/url] .
Diplomi_rjEa
20 Oct 25 at 1:44 am
алкоголизм лечение вывод из запоя москва [url=www.vyvod-iz-zapoya-9.ru]www.vyvod-iz-zapoya-9.ru[/url] .
vivod iz zapoya_mpEl
20 Oct 25 at 1:44 am
Акционный код 1xBet — пропишите его в графу «Промокод» при регистрации на сайте, пополните свой игровой баланс на сумму от 100 рублей и активируйте вознаграждением в размере удвоения депозита (до 32 500 RUB). В личном кабинете найдите раздел «Мои бонусы» и активируйте вариант «Ввести код». Укажите полученный код в нужное поле. Нажмите подтвердить и прочитайте правила бонуса.Бонусный код 1xBet 2026 года можно взять по ссылке — http://www.vlaje.ru/obuv/pages/1xbet_promokod_pri_registracii_na_segodnya_besplatno.html.
Jamesslurn
20 Oct 25 at 1:45 am
One more trend gaining momentum in modern trading is the push towards accountable and sustainable
investing. With boosting awareness of the environmental, social, and administration (ESG) effects of investment choices, traders are
re-evaluating not just what they buy however how they approach the markets.
Strategies concentrating on straightening with honest and sustainable practices have actually begun to reverberate with a brand-new generation of investors who value social effect alongside financial returns.
This change towards responsible financial investment is most likely to withstand,
with the transforming preferences of investors and consumers shaping the future
of trading markets.
ماركت كوم
20 Oct 25 at 1:45 am
купить диплом в бердске [url=www.rudik-diplom7.ru/]www.rudik-diplom7.ru/[/url] .
Diplomi_sePl
20 Oct 25 at 1:45 am
Hello! Do you use Twitter? I’d like to follow
you if that would be okay. I’m absolutely enjoying
your blog and look forward to new updates.
https://mmlgh.com/
Hasil Keluaran Togel Hongkong Pools Versi 6D
20 Oct 25 at 1:48 am
Если домашние методы не помогают, вывод из запоя в стационаре в Самаре — это безопасный выбор с профессиональной детоксикацией.
Изучить вопрос глубже – [url=https://vyvod-iz-zapoya-v-stacionare-samara23.ru/]наркология вывод из запоя в стационаре самара[/url]
Williamliz
20 Oct 25 at 1:48 am
Стационар «Частного Медика 24» — это круглосуточная помощь при запое, современные капельницы и заботливый уход.
Подробнее можно узнать тут – [url=https://vyvod-iz-zapoya-v-stacionare23.ru/]стационар вывод из запоя нижний новгород[/url]
Francisitedo
20 Oct 25 at 1:48 am