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!
https://t.me/s/ud_Jet/64
MichaelPione
31 Oct 25 at 7:11 pm
Hello just wanted to give you a brief heads up and let you
know a few of the images aren’t loading properly. I’m not
sure why but I think its a linking issue. I’ve tried it in two different browsers and
both show the same results.
hydrocolloid dressing
31 Oct 25 at 7:12 pm
рулонные шторы с автоматическим управлением [url=www.rulonnye-shtory-s-elektroprivodom7.ru/]www.rulonnye-shtory-s-elektroprivodom7.ru/[/url] .
rylonnie shtori s elektroprivodom_zgMl
31 Oct 25 at 7:16 pm
услуги онлайн трансляции [url=https://www.zakazat-onlayn-translyaciyu5.ru]https://www.zakazat-onlayn-translyaciyu5.ru[/url] .
zakazat onlain translyaciu_bkmr
31 Oct 25 at 7:17 pm
tg @‌links_dealer | effective seo links for spinbetter.bet
Jamesjah
31 Oct 25 at 7:18 pm
готовые рулонные шторы купить в москве [url=https://avtomaticheskie-rulonnye-shtory1.ru/]готовые рулонные шторы купить в москве[/url] .
avtomaticheskie rylonnie shtori_vyMr
31 Oct 25 at 7:19 pm
рулонные шторы автоматические купить [url=www.avtomaticheskie-rulonnye-shtory77.ru]www.avtomaticheskie-rulonnye-shtory77.ru[/url] .
avtomaticheskie rylonnie shtori_pcPa
31 Oct 25 at 7:19 pm
Irish Pharma Finder
Edmundexpon
31 Oct 25 at 7:20 pm
Pin-Up is an international gambling platform offering slots, live games, promotions https://berez-korekt.ru
Georgecen
31 Oct 25 at 7:20 pm
натяжные потолки город нижний новгород [url=natyazhnye-potolki-nizhniy-novgorod-1.ru]natyazhnye-potolki-nizhniy-novgorod-1.ru[/url] .
natyajnie potolki nijnii novgorod_umma
31 Oct 25 at 7:20 pm
рулонные жалюзи с электроприводом [url=avtomaticheskie-rulonnye-shtory77.ru]рулонные жалюзи с электроприводом[/url] .
avtomaticheskie rylonnie shtori_njPa
31 Oct 25 at 7:21 pm
организация прямых трансляций [url=www.zakazat-onlayn-translyaciyu4.ru]www.zakazat-onlayn-translyaciyu4.ru[/url] .
zakazat onlain translyaciu_grSr
31 Oct 25 at 7:21 pm
натяжные потолки нижний новгород с установкой [url=http://natyazhnye-potolki-nizhniy-novgorod-1.ru/]http://natyazhnye-potolki-nizhniy-novgorod-1.ru/[/url] .
natyajnie potolki nijnii novgorod_gama
31 Oct 25 at 7:22 pm
онлайн трансляция заказать москва [url=https://www.zakazat-onlayn-translyaciyu5.ru]https://www.zakazat-onlayn-translyaciyu5.ru[/url] .
zakazat onlain translyaciu_yzmr
31 Oct 25 at 7:23 pm
Wah lao, no matter іf institution proves һigh-end, mathematics acts ⅼike tһе critical subject to building ppoise ԝith numbeгs.
Aiyah, primary mathematics teaches practical ᥙsеѕ including financial planning, tһus ensure ʏⲟur kid grasps іt
properly from уoung.
Temasek Junior College motivates trailblazers tһrough extensive academics and ethical worths, blending tradition ԝith innovation. Rеsearch centers and electives in languages and
artts promote deep knowing. Lively сօ-curriculars develop team effort and creativity.
International collaborations enhance international skills.
Alumni flourish іn prestigious institutions,
embodying quality аnd service.
Millennia Institute stands ߋut with its distinctive tһree-ʏear pre-university path гesulting
in tһe GCE A-Level assessments, supplying
versatile ɑnd th᧐rough study choices іn commerce,
arts, аnd sciences customized to accommodate а varied range of
learners аnd their special goals. As а central institute, it սѕеs
tailored guidance аnd support group, consisting
of devoted academic advisors ɑnd counseling services, tо ensure еveгy trainee’ѕ holistic advancement аnd scholastic success in a inspiring environment.
The institute’s modern facilities, ѕuch as digital knowing hubs, multimedia resource centers, ɑnd collaborative workspaces, develop аn engaging platform fօr innovative teaching techniques ɑnd
hands-ߋn projects tһat bridge theory ᴡith սseful application. Тhrough strong indusrry partnerships, students gain access tօ real-worⅼd experiences like internships, workshops wіth professionals,
аnd scholarship opportunities that improve their employability ɑnd career preparedness.
Alumni fгom Millennia Institute consistently attain success іn greater education and professional arenas, ѕhowing the organization’s unwavering
dedication tօ promoting lߋng-lasting learning, adaptability, аnd individual
empowerment.
Parents, fearful ߋf losing approach engaged lah, robust primary maths guides іn improved science comprehension ⲣlus engineering dreams.
Wow, math serves аѕ the groundwork pillar for primary schooling, assisting kids fοr
spatial thinking fοr architecture routes.
Dߋ not play play lah, link а reputable Junior College
alongside maths superiority t᧐ assure elevated Α Levels marks ɑnd smooth transitions.
Іn additіon from establishment amenities, concentrate ԝith mathematics to avoіd typical mistakes including
sloppy errors аt assessments.
Mums ɑnd Dads, kiasu style on lah, strong primary mathematics leads
іn improved STEM comprehension рlus construction goals.
Wow, mathematics serves аs tһe groundwork pillar оf primary education, assisting
youngsters witһ dimensional reasoning in building careers.
Math іs compulsory for many A-level combinations, ѕo ignoring
it meɑns risking overall failure.
Oh no, primary maths instructs practical applications ⅼike money
management, tһerefore ensure your youngster gets that
riցht begіnning үoung.
Listen up, steady pom pi pі, mathematics is ⲣart fr᧐m the leading disciplines аt Junior College, laying foundation fоr A-Level һigher calculations.
Μy paɡe – Guangyang Secondary School Singapore
Guangyang Secondary School Singapore
31 Oct 25 at 7:23 pm
https://shashiartgallery.com/melbet-pereyti-na-sajt-obzor-bk-2025/
JeromeSix
31 Oct 25 at 7:24 pm
купить новый диплом [url=www.rudik-diplom15.ru/]купить новый диплом[/url] .
Diplomi_viPi
31 Oct 25 at 7:25 pm
рулонные шторы купить москва недорого [url=https://avtomaticheskie-rulonnye-shtory1.ru/]рулонные шторы купить москва недорого[/url] .
avtomaticheskie rylonnie shtori_ziMr
31 Oct 25 at 7:26 pm
https://safemedsguide.com/# top rated online pharmacies
Haroldovaph
31 Oct 25 at 7:27 pm
организация прямой трансляции [url=http://zakazat-onlayn-translyaciyu5.ru/]организация прямой трансляции[/url] .
zakazat onlain translyaciu_lemr
31 Oct 25 at 7:28 pm
отзывы потолочкин натяжные потолки [url=https://www.natyazhnye-potolki-nizhniy-novgorod-1.ru]https://www.natyazhnye-potolki-nizhniy-novgorod-1.ru[/url] .
natyajnie potolki nijnii novgorod_nrma
31 Oct 25 at 7:28 pm
Guzellik ve kozmetikte her zaman gecmisten al?nacak dersler bulunur. 90’lar?n modas?ndan guzellik s?rlar?n? kesfetmeye haz?r olun.
Для тех, кто ищет информацию по теме “Guzellik ve Kozmetik: 90’lar Modas?ndan Ipuclar?”, есть отличная статья.
Вот, можете почитать:
[url=https://aynakirildi.com]https://aynakirildi.com[/url]
90’lar?n guzellik s?rlar?yla tarz?n?za yeni bir soluk kazand?rabilirsiniz. Eski moda, yeni size ilham olsun!
Josephassof
31 Oct 25 at 7:28 pm
рулонные шторы виды механизмов [url=https://avtomaticheskie-rulonnye-shtory77.ru/]avtomaticheskie-rulonnye-shtory77.ru[/url] .
avtomaticheskie rylonnie shtori_mzPa
31 Oct 25 at 7:28 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.
sports jerseys
31 Oct 25 at 7:29 pm
Wow, awesome blog layout! How long have you been blogging for?
you made blogging look easy. The overall look of your website is wonderful, as
well as the content!
Everix Edge
31 Oct 25 at 7:29 pm
рулонные жалюзи с электроприводом [url=http://elektricheskie-zhalyuzi97.ru/]рулонные жалюзи с электроприводом[/url] .
elektricheskie jaluzi_weet
31 Oct 25 at 7:29 pm
рулонные шторы автоматические [url=https://avtomaticheskie-rulonnye-shtory1.ru/]рулонные шторы автоматические[/url] .
avtomaticheskie rylonnie shtori_fmMr
31 Oct 25 at 7:30 pm
автоматические рулонные шторы на створку [url=www.rulonnye-shtory-s-elektroprivodom7.ru/]www.rulonnye-shtory-s-elektroprivodom7.ru/[/url] .
rylonnie shtori s elektroprivodom_mcMl
31 Oct 25 at 7:31 pm
https://zen69.net/melbet-zaregistrirovatsya-2025/
JustinAcecy
31 Oct 25 at 7:31 pm
потолка [url=http://www.natyazhnye-potolki-nizhniy-novgorod-1.ru]потолка[/url] .
natyajnie potolki nijnii novgorod_obma
31 Oct 25 at 7:31 pm
рулонные шторы на окна цена [url=https://rulonnye-shtory-s-elektroprivodom7.ru/]рулонные шторы на окна цена[/url] .
rylonnie shtori s elektroprivodom_erMl
31 Oct 25 at 7:32 pm
Есть битое авто? Продажа автомобилей с пробегом в Москве: срочный выкуп автомобиля «под ключ». Присылайте VIN и фото — дадим предварительную цену, согласуем выезд эксперта, проведём диагностику и проверку документов. Учитываем комплектацию, сервисную историю, ДТП, окрасы и техническое состояние. Покупаем битые, проблемные, кредитные, корпоративные, с большим пробегом. Оплачиваем сразу и безопасно, выдаём полный пакет бумаг для налоговой и банка. Забираем авто своим эвакуатором, бережно и быстро. Прозрачная оценка без торга и навязанных услуг, честные сроки, конфиденциальность, поддержка на каждом этапе сделки.
vykup-bityh-avto-369
31 Oct 25 at 7:33 pm
рулонные шторы жалюзи на окна [url=www.avtomaticheskie-rulonnye-shtory77.ru]www.avtomaticheskie-rulonnye-shtory77.ru[/url] .
avtomaticheskie rylonnie shtori_rdPa
31 Oct 25 at 7:33 pm
https://kamarslot888.co/melbet-sloty-vhod-2025/
RobertHindy
31 Oct 25 at 7:35 pm
заказать рулонные шторы в москве [url=https://avtomaticheskie-rulonnye-shtory1.ru/]заказать рулонные шторы в москве[/url] .
avtomaticheskie rylonnie shtori_igMr
31 Oct 25 at 7:36 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]tripscan[/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.
Richardhooto
31 Oct 25 at 7:37 pm
натяжные потолки потолки [url=https://www.natyazhnye-potolki-nizhniy-novgorod-1.ru]натяжные потолки потолки[/url] .
natyajnie potolki nijnii novgorod_flma
31 Oct 25 at 7:37 pm
https://hand-spin.com.ua/ru/obmenyat-i-vyvesti-tether-trc20-usdt-na-kartu-monobank-uah-bystro-udobno-bezopasno/
https://hand-spin.com.ua/ru/obmenyat-i-vyvesti-tether-trc20-usdt-na-kartu-monobank-uah-bystro-udobno-bezopasno/
31 Oct 25 at 7:37 pm
https://loja.primeembalagens.com.br/melbet-2025-skachat-mobilnoe-prilozhenie/
ThomasMuh
31 Oct 25 at 7:37 pm
cheap medicines online Australia: AussieMedsHubAu – best Australian pharmacies
Johnnyfuede
31 Oct 25 at 7:38 pm
стоимость онлайн трансляции на мероприятии [url=http://www.zakazat-onlayn-translyaciyu5.ru]http://www.zakazat-onlayn-translyaciyu5.ru[/url] .
zakazat onlain translyaciu_xbmr
31 Oct 25 at 7:38 pm
купить диплом в мытищах [url=https://www.rudik-diplom15.ru]купить диплом в мытищах[/url] .
Diplomi_gcPi
31 Oct 25 at 7:38 pm
автоматическая рулонная штора [url=www.rulonnye-shtory-s-elektroprivodom7.ru/]www.rulonnye-shtory-s-elektroprivodom7.ru/[/url] .
rylonnie shtori s elektroprivodom_krMl
31 Oct 25 at 7:39 pm
организация онлайн трансляций москва [url=http://zakazat-onlayn-translyaciyu4.ru]http://zakazat-onlayn-translyaciyu4.ru[/url] .
zakazat onlain translyaciu_slSr
31 Oct 25 at 7:40 pm
рулонные шторы на электроприводе [url=avtomaticheskie-rulonnye-shtory77.ru]рулонные шторы на электроприводе[/url] .
avtomaticheskie rylonnie shtori_ofPa
31 Oct 25 at 7:40 pm
потол [url=https://natyazhnye-potolki-nizhniy-novgorod-1.ru/]natyazhnye-potolki-nizhniy-novgorod-1.ru[/url] .
natyajnie potolki nijnii novgorod_ecma
31 Oct 25 at 7:41 pm
discount pharmacies in Ireland: pharmacy delivery Ireland – top-rated pharmacies in Ireland
HaroldSHems
31 Oct 25 at 7:41 pm
рулонные шторы на окна цена [url=https://www.rulonnye-shtory-s-elektroprivodom7.ru]рулонные шторы на окна цена[/url] .
rylonnie shtori s elektroprivodom_wcMl
31 Oct 25 at 7:42 pm
натяжные потолки сайт [url=https://natyazhnye-potolki-nizhniy-novgorod-1.ru/]натяжные потолки сайт[/url] .
natyajnie potolki nijnii novgorod_mgma
31 Oct 25 at 7:42 pm
рольшторы с электроприводом [url=www.avtomaticheskie-rulonnye-shtory77.ru]рольшторы с электроприводом[/url] .
avtomaticheskie rylonnie shtori_nrPa
31 Oct 25 at 7:43 pm