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=www.transformatornye-podstancii-kupit1.ru]www.transformatornye-podstancii-kupit1.ru[/url] .
transformatornie podstancii kypit_pwor
21 Aug 25 at 6:48 pm
беседа с психологом онлайн
Charliesoall
21 Aug 25 at 6:48 pm
трансформаторная подстанция купить [url=https://transformatornye-podstancii-kupit1.ru/]transformatornye-podstancii-kupit1.ru[/url] .
transformatornie podstancii kypit_clor
21 Aug 25 at 6:51 pm
It’s remarkable to pay a quick visit this site and reading the views of
all friends on the topic of this piece of writing, while I am also zealous of getting knowledge.
Pink Salt Trick For Weight Loss
21 Aug 25 at 6:54 pm
Folks, kiasu approach ߋn lah, elite schools offer international
excursions, expanding horizons foг international career preparedness.
Listen, calm pom ρi pi, leading schools track progress carefully,
spotting flaws ѕoon for smooth academic journeys.
Ⲟh man, even whetheг institution remains atas, arithmetic acts ⅼike the critical topic іn building assurance гegarding calculations.
Oh mаn, eνen ѡhether institution іs atas, arithmetic acts liҝe the mɑke-or-break
discipline іn developing confidence regarding numberѕ.
Aiyo, lacking robust arithmetic аt primary school, еven prestigious establishment
kids ϲould stumble in secondary calculations,
ѕo build tһat promptly leh.
Oh no, primary mathematics educates real-ѡorld implementations including financial planning,
tһerefore ensure yourr youngster ɡets tһis correctly starting young
age.
Listen ᥙр, Singapore moms аnd dads, arithmetic remɑins pеrhaps tһe highly essential primary topic, encouraging imagination іn challenge-tackling
fоr creative jobs.
Queenstown Primary School ᥙseѕ an encouraging setting for detailed
student development.
Ƭhe school inspires academic achievement tһrough quality
education.
West Grove Primary School produces ɑ green aгea foг holistic
development.
The school promotes environment-friendly practices.
Moms ɑnd dads appreciate its sustainability focus.
Review mу homepage: math tuition singapore
math tuition singapore
21 Aug 25 at 6:54 pm
You have made some decent points there. I looked on the web to learn more
about the issue and found most individuals will go along with your views on this site.
tilt photography presets
21 Aug 25 at 6:55 pm
stavkiprognozy [url=http://www.stavki-prognozy-one.ru]http://www.stavki-prognozy-one.ru[/url] .
stavki prognozi_blsr
21 Aug 25 at 6:55 pm
аттестат за 11 купить в нижнем новгороде [url=https://arus-diplom25.ru]аттестат за 11 купить в нижнем новгороде[/url] .
Diplomi_ghot
21 Aug 25 at 6:57 pm
Thanks for sharing your thoughts about Stahlwandpools.
Regards
Stahlwandpools
21 Aug 25 at 6:58 pm
stavkiprognozy [url=http://www.stavki-prognozy-one.ru]http://www.stavki-prognozy-one.ru[/url] .
stavki prognozi_pzsr
21 Aug 25 at 6:58 pm
Hi there would you mind stating which blog platform you’re working with?
I’m going to start my own blog in the near future but I’m having a tough time choosing between BlogEngine/Wordpress/B2evolution and Drupal.
The reason I ask is because your design and style
seems different then most blogs and I’m looking for something completely unique.
P.S Apologies for getting off-topic but I had to ask!
فرق فرهنگیان و پردیس فرهنگیان
21 Aug 25 at 7:02 pm
https://muckrack.com/person-27488827
JamesWek
21 Aug 25 at 7:03 pm
Особо популярно в Казахстане пополнение 1xBet через Билайн и с
помощью банковских карт.
1xbet casino
21 Aug 25 at 7:06 pm
Medicines information sheet. Long-Term Effects.
tamsulosin and dutasteride brands
Best what you want to know about drug. Read now.
tamsulosin and dutasteride brands
21 Aug 25 at 7:06 pm
трансформаторная подстанция ктп [url=https://transformatornye-podstancii-kupit1.ru]https://transformatornye-podstancii-kupit1.ru[/url] .
transformatornie podstancii kypit_paor
21 Aug 25 at 7:07 pm
I got this website from my friend who shared with me regarding this web
page and now this time I am visiting this website and reading very informative articles
or reviews here.
купить аккаунт dota 2
21 Aug 25 at 7:09 pm
What’s up i am kavin, its my first time to commenting anywhere, when i read this
paragraph i thought i could also create comment due to this good
piece of writing.
Zainspiruj się najnowszymi trendami!
21 Aug 25 at 7:14 pm
Привет всем!
Долго анализировал как поднять сайт и свои проекты и нарастить ИКС Яндекса и узнал от друзей профессионалов,
топовых ребят, именно они разработали недорогой и главное top прогон Хрумером – https://www.bing.com/search?q=bullet+%D0%BF%D1%80%D0%BE%D0%B3%D0%BE%D0%BD
Прогон Хрумер для сайта позволяет выйти в топ за короткий срок. Программа размещает ссылки массово и эффективно. Это дает рост DR и улучшение позиций. Такой метод подходит как для новых, так и старых сайтов. Прогон Хрумер для сайта – лучший способ ускорить SEO.
продвижение сайта ссылки, seo продвижение трафик, линкбилдинг цена
линкбилдинг блог, seo копирайтинг компании, обучение сео с нуля
!!Удачи и роста в топах!!
Xrumersarrit
21 Aug 25 at 7:15 pm
ставки прогнозы [url=https://stavki-prognozy-one.ru/]https://stavki-prognozy-one.ru/[/url] .
stavki prognozi_kmsr
21 Aug 25 at 7:16 pm
трансформаторная подстанция ктп [url=http://transformatornye-podstancii-kupit1.ru]http://transformatornye-podstancii-kupit1.ru[/url] .
transformatornie podstancii kypit_lior
21 Aug 25 at 7:16 pm
https://medinfo24shop.top/buy-amaryl/
https://medinfo24shop.top/buy-amaryl/
21 Aug 25 at 7:17 pm
https://www.metooo.io/u/68a024de3f310a137ac718ec
JamesWek
21 Aug 25 at 7:24 pm
Dr. Jake Scott is on the front line of his second pandemic in five years and he is not getting much sleep.
Scott works full-time as an infectious disease physician at Stanford Health Care’s Tri-Valley hospital in Pleasanton, California. When he is done taking care of his patients and his two grade-school aged kids, he often stays up past midnight writing — furiously penning op-eds, collecting studies, leading evidence reviews and posting meaty threads on social media, most of them correcting the record on vaccines.
[url=https://trip-skan.cc]tripskan[/url]
Often, he’s reacting to the latest maneuvers by US Health and Human Services Secretary Robert F. Kennedy Jr.. A pinned post responding to one of Kennedy’s appearances on Fox News has been viewed almost 5 million times. Another post fact-checking Kennedy’s claims about potential harms from aluminum in vaccines had 1 million views in its first 48 hours. Scott’s followers on X have doubled since April.
https://trip-skan.cc
трипскан вход
“A million views for this long-winded, very detailed, kind of nerdy breakdown of the science,” Scott said, marveling at the attention it got. “I think that’s saying something, you know? People want that information, and they deserve it,” said Scott who is 48.
The Covid-19 pandemic turned many infectious disease specialists and virologists into household names. Scott’s was not one of them, perhaps because he was too busy treating patients. He didn’t stay out of the public discourse completely, however. He was one of the first doctors to tell people that Omicron didn’t seem to be as severe an infection as earlier strains of the virus, although some virologists were skeptical at the time.
In President Donald Trump’s second administration, however, Scott is taking on what he sees as a second pandemic — misinformation and disinformation about vaccines. He knows false information can be as harmful as any virus.
“When officials spread inaccurate information about vaccines, it does have real consequences, and families make decisions based on fear rather than on facts,” Scott said.
It’s already happening. The US Centers for Disease Control and Prevention recently reported data showing kindergarten vaccination rates continue to decline, as states make it easier to opt out of school vaccination requirements. Vaccine preventable diseases like measles and whooping cough are rising again, too.
Scott knows it could get much worse.
“In 2021, nearly every single patient I lost to Covid was unvaccinated by choice, and every colleague of mine has said the same thing.”
WalterZeW
21 Aug 25 at 7:25 pm
Target is in trouble. And while it’s easy to get lost in the company’s recent (poor) handling of American culture war narratives that cast it as too “woke” or too willing to cave to online fascists, the root of Target’s problems runs deep.
[url=https://tripscan39.org]трипскан вход[/url]
Don’t get me wrong – the massive consumer boycotts from Black organizers have done damage. And there are probably folks on the far right who think even Target’s toned-down, overwhelmingly beige Pride merch this year was still too loud.
https://tripscan39.org
tripskan
But its stock is in the gutter and sales have been falling for two years because of good ol’ business fundamentals. It overstocked. It lost the pulse of its customers. It went up against Amazon Prime with… actually, does anyone know what Target’s Amazon Prime competitor is called?
The brand we petite bourgeoisie once playfully referred to as Tar-zhay has lost its spark. The company reported a decline in sales for a third-straight quarter, part of a broader trend of falling or flat sales for two years. Employees have lost confidence in the company’s direction. And 2025 has been a particularly rough financially, as Black shoppers organized a boycott over Target’s decision to cave to right-wing pressure on diverse hiring goals.
Shares were down 10% Wednesday.
It’s not to say the new guy, Michael Fiddelke, is unqualified. He’s been at Target since he started as an intern more than 20 years ago, after all. But Wall Street is clearly concerned that Target’s leadership is underestimating the severity of the need for a significant change— just as President Donald Trump’s tariffs on imported goods threaten the entire retail industry.
Appointing a company lifer “does not necessarily remedy the problems of entrenched groupthink and the inward-looking mindset that have plagued Target for years,” Neil Saunders, an analyst at GlobalData Retail, said in a note to clients Wednesday.
Missing the mark
In its 2010s heyday, Target became a go-to for consumers who liked a bargain but didn’t necessarily like bargain-hunting. The shelves felt well-curated. You’d go to Target because it had one thing you needed and 12 things you didn’t know you needed. It was stocked with Millennial cringe long before Gen Z gave us the term Millennial cringe.
Target’s sales held strong through the pandemic as remote workers set up home offices and stocked up on essentials. Months of lockdown also benefited the store as people began refreshing their spaces because they didn’t really have much else to do and they were staring at the same walls all the time.
Kerrydreby
21 Aug 25 at 7:25 pm
купить диплом с реестром вуза [url=http://arus-diplom31.ru/]купить диплом с реестром вуза[/url] .
Diplomi_xppl
21 Aug 25 at 7:25 pm
Stavki Prognozy [url=http://www.stavki-prognozy-one.ru]http://www.stavki-prognozy-one.ru[/url] .
stavki prognozi_gcsr
21 Aug 25 at 7:26 pm
Затяжной запой опасен для жизни. Врачи наркологической клиники в Челябинске проводят срочный вывод из запоя — на дому или в стационаре. Анонимно, безопасно, круглосуточно.
Изучить вопрос глубже – [url=https://vyvod-iz-zapoya-chelyabinsk13.ru/]вывод из запоя капельница на дому челябинск[/url]
DanielScord
21 Aug 25 at 7:28 pm
cost cheap sporanox price
where to get sporanox online
21 Aug 25 at 7:32 pm
купить настоящий аттестат об окончании 11 классов [url=www.arus-diplom24.ru/]купить настоящий аттестат об окончании 11 классов[/url] .
Diplomi_trKn
21 Aug 25 at 7:33 pm
Затяжной запой опасен для жизни. Врачи наркологической клиники в Санкт-Петербурге проводят срочный вывод из запоя — на дому или в стационаре. Анонимно, безопасно, круглосуточно.
Подробнее – [url=https://vyvod-iz-zapoya-v-sankt-peterburge18.ru/]sankt-peterburg[/url]
Mathewwheli
21 Aug 25 at 7:34 pm
Каждый день запоя увеличивает риск для жизни. Не рискуйте — специалисты в Санкт-Петербурге приедут на дом и окажут экстренную помощь. Без боли, стресса и ожидания.
Узнать больше – [url=https://vyvod-iz-zapoya-v-sankt-peterburge17.ru/]санкт-петербург[/url]
WilliamStego
21 Aug 25 at 7:34 pm
Dr. Jake Scott is on the front line of his second pandemic in five years and he is not getting much sleep.
Scott works full-time as an infectious disease physician at Stanford Health Care’s Tri-Valley hospital in Pleasanton, California. When he is done taking care of his patients and his two grade-school aged kids, he often stays up past midnight writing — furiously penning op-eds, collecting studies, leading evidence reviews and posting meaty threads on social media, most of them correcting the record on vaccines.
[url=https://trip-skan.cc]tripscan[/url]
Often, he’s reacting to the latest maneuvers by US Health and Human Services Secretary Robert F. Kennedy Jr.. A pinned post responding to one of Kennedy’s appearances on Fox News has been viewed almost 5 million times. Another post fact-checking Kennedy’s claims about potential harms from aluminum in vaccines had 1 million views in its first 48 hours. Scott’s followers on X have doubled since April.
https://trip-skan.cc
трип скан
“A million views for this long-winded, very detailed, kind of nerdy breakdown of the science,” Scott said, marveling at the attention it got. “I think that’s saying something, you know? People want that information, and they deserve it,” said Scott who is 48.
The Covid-19 pandemic turned many infectious disease specialists and virologists into household names. Scott’s was not one of them, perhaps because he was too busy treating patients. He didn’t stay out of the public discourse completely, however. He was one of the first doctors to tell people that Omicron didn’t seem to be as severe an infection as earlier strains of the virus, although some virologists were skeptical at the time.
In President Donald Trump’s second administration, however, Scott is taking on what he sees as a second pandemic — misinformation and disinformation about vaccines. He knows false information can be as harmful as any virus.
“When officials spread inaccurate information about vaccines, it does have real consequences, and families make decisions based on fear rather than on facts,” Scott said.
It’s already happening. The US Centers for Disease Control and Prevention recently reported data showing kindergarten vaccination rates continue to decline, as states make it easier to opt out of school vaccination requirements. Vaccine preventable diseases like measles and whooping cough are rising again, too.
Scott knows it could get much worse.
“In 2021, nearly every single patient I lost to Covid was unvaccinated by choice, and every colleague of mine has said the same thing.”
GordonFah
21 Aug 25 at 7:35 pm
where to buy generic clomid tablets: FertiCare Online – FertiCare Online
FrankCax
21 Aug 25 at 7:35 pm
С развитием вашего статуса
вы будете получать кешбэк и пакеты бесплатных
вращений, при этом вознаграждения за ставки будут постепенно уменьшаться.
казино
21 Aug 25 at 7:35 pm
На протяжении процедуры врач постоянно наблюдает за пациентом. Контролируются витальные показатели, корректируется скорость инфузии, дозировки и последовательность введения препаратов. При любых нестандартных реакциях схема лечения тут же адаптируется. Мы не используем «универсальных» капельниц: только персонализированные решения, основанные на состоянии конкретного человека.
Ознакомиться с деталями – https://narkolog-na-dom-krasnogorsk6.ru/vyzov-narkologa-na-dom-v-krasnogorske/
GoodiniIcock
21 Aug 25 at 7:35 pm
You’re so awesome! I don’t believe I’ve read through something like this before.
So wonderful to discover someone with genuine thoughts
on this topic. Really.. many thanks for starting this up.
This web site is something that’s needed on the internet,
someone with a bit of originality!
New Loock
21 Aug 25 at 7:40 pm
https://wanderlog.com/view/ivckdnxvij/купить-кокаин-марихуану-мефедрон-фетхие/shared
JamesWek
21 Aug 25 at 7:45 pm
Срочно нужны купить цветы Минск Свежие букеты, праздничные композиции и эксклюзивные флористические решения. Онлайн-заказ и быстрая доставка по городу.
millionroz-11
21 Aug 25 at 7:45 pm
Любая 20 Boost Hot игра подарит адреналин и азарт.
WilliamNex
21 Aug 25 at 7:47 pm
Также в расчет включается необходимость проведения дополнительных процедур (например, консультаций с психологом или кодирования) и географическая удаленность адреса вызова. Важно, что все эти параметры обсуждаются с пациентом заранее, что позволяет точно рассчитать расходы и избежать неожиданных доплат.
Выяснить больше – https://kapelnica-ot-zapoya-nizhniy-novgorod000.ru/
ConradSon
21 Aug 25 at 7:47 pm
купить диплом с занесением в реестр в уфе [url=http://arus-diplom34.ru]http://arus-diplom34.ru[/url] .
Bistro i prosto kypit diplom o visshem obrazovanii!_mwkn
21 Aug 25 at 7:48 pm
Цитаты про хорошее время провождения. Цитаты про добрых людей. Грустные цитаты про жизнь со смыслом. Пафосные цитаты. Цитаты личность. Высокомерные цитаты.
citaty-top-884
21 Aug 25 at 7:51 pm
ivermectin anti inflammatory: ivermectin treatment – ivermectin for sale
FrankCax
21 Aug 25 at 7:51 pm
Самостоятельно выйти из запоя — почти невозможно. В Санкт-Петербурге врачи клиники проводят медикаментозный вывод из запоя с круглосуточным выездом. Доверяйте профессионалам.
Подробнее можно узнать тут – [url=https://vyvod-iz-zapoya-v-sankt-peterburge11.ru/]вывод из запоя дешево[/url]
GilbertHek
21 Aug 25 at 7:56 pm
toto 4d
Info Menarik Lomba Spin Toto Slot 88 & Pasang Angka Togel 4D Unggulan – TOGELONLINE88
situs togel
21 Aug 25 at 7:57 pm
украина купить аттестат за 11 класс [url=https://www.arus-diplom24.ru]https://www.arus-diplom24.ru[/url] .
Diplomi_gnKn
21 Aug 25 at 7:59 pm
Близкий человек в запое? Не ждите ухудшения. Обратитесь в клинику — здесь проведут профессиональный вывод из запоя с последующим восстановлением организма.
Узнать больше – [url=https://azithromycinum.ru/]в санкт-петербурге[/url]
CarlosRef
21 Aug 25 at 8:00 pm
Профессиональные детейлинг авто: полировка кузова, химчистка салона, восстановление пластика и защита керамикой. Вернём автомобилю блеск и надёжную защиту.
812detailing-490
21 Aug 25 at 8:00 pm
Все процедуры проводятся в максимально комфортных и анонимных условиях, после тщательной диагностики и при полном информировании пациента о сути, длительности и возможных ощущениях.
Подробнее – http://kodirovanie-ot-alkogolizma-kolomna6.ru/
EdwardEmamn
21 Aug 25 at 8:01 pm
ароматерапия aromatmaslo
CalvinLoR
21 Aug 25 at 8:03 pm