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!
взрослые индивидуалки тюмень
FrankHef
20 Oct 25 at 10:51 pm
Ниже — практическая карта первых часов. Она помогает всем участникам понимать логику действий, точки контроля и критерии перехода. Если ответ «плоский», меняем один параметр и возвращаемся к оценке в назначённое время — без хаотичных «усилений».
Получить больше информации – [url=https://kapelnicza-ot-zapoya-murmansk15.ru/]капельница от запоя на дому мурманск[/url]
WilliamMayox
20 Oct 25 at 10:51 pm
Индивидуальная программа у нас — это модульный конструктор. В одних случаях критичен блок сна, в других — профилактика вечерних «волн» тревоги, в третьих — семейная медиированная встреча. Мы гибко переставляем модули, учитывая сопутствующие заболевания, приём базовых лекарств (антигипертензивные, антиаритмические, сахароснижающие), возраст и расписание пациента. Цель проста: чтобы терапия вписалась в жизнь, а не наоборот.
Детальнее – [url=https://narkologicheskaya-klinika-ryazan14.ru/]лечение в наркологической клинике[/url]
LarryPleag
20 Oct 25 at 10:52 pm
It’s awesome to go to see this website and reading
the views of all friends concerning this paragraph,
while I am also keen of getting know-how.
비아그라 구매 사이트
20 Oct 25 at 10:53 pm
купить диплом в ишимбае [url=http://www.rudik-diplom1.ru]http://www.rudik-diplom1.ru[/url] .
Diplomi_qwer
20 Oct 25 at 10:53 pm
проект после перепланировки [url=https://proekt-pereplanirovki-kvartiry11.ru/]proekt-pereplanirovki-kvartiry11.ru[/url] .
proekt pereplanirovki kvartiri_mkot
20 Oct 25 at 10:55 pm
В условиях медицинского контроля специалисты выполняют последовательные действия, направленные на стабилизацию состояния пациента.
Детальнее – [url=https://vyvod-iz-zapoya-ryazan14.ru/]вывод из запоя круглосуточно[/url]
TimothyDrich
20 Oct 25 at 10:57 pm
*Седативные препараты применяются строго по показаниям и под мониторингом дыхания.
Получить больше информации – http://vivod-iz-zapoya-rostov14.ru/vyvod-iz-zapoya-na-domu-rostov-na-donu/
Thomaszique
20 Oct 25 at 10:57 pm
Eh parents, avoid mess arоund, a good primary instills enthusiasm f᧐r education,
leading to Ьetter grades and uni admissions internationally.
Oi oi, аvoid downplay lah, famous institutions һave art
facilities, fοr artistic аnd architecture careers.
Օh no, primary arithmetic educates practical implementations including money management,
tһerefore guarantee youг youngster masters tһat correctly starting уoung.
Do not play play lah, link ɑ excellent primary school with math excellence іn order to guarantee
hіgh PSLE scores aѕ ԝell as smooth transitions.
Guardians, kiasu style activated lah, strong primary mathematics guides fߋr bеtter
STEM grasp аnd engineering aspirations.
Folks, kiasu style engaged lah, robust primary arithmetic leads tο superior STEM
comprehension аnd engineering goals.
Wah, math acts ⅼike tһe foundation pillar fоr primary schooling, aiding youngsters ԝith dimensional analysis for building paths.
Princess Elizabeth Primary School ᥙsеs а caring setting fօr girls tߋ grow and attain.
With quality programs, іt influencers confidence ɑnd success.
Teck Ghee Primary School supplies encouraging programs fⲟr development.
Тhe school develops strong scholastic bases.
Moms аnd dads pick it foг reputable quality.
Μy web site – math tuition singapore
math tuition singapore
20 Oct 25 at 10:58 pm
купить диплом в архангельске [url=https://www.rudik-diplom1.ru]купить диплом в архангельске[/url] .
Diplomi_iuer
20 Oct 25 at 10:58 pm
pin up depozit bonusi [url=https://pinup5008.ru/]pin up depozit bonusi[/url]
pin_up_uz_rjSt
20 Oct 25 at 11:02 pm
pin up tikish qanday qilinadi [url=https://www.pinup5007.ru]pin up tikish qanday qilinadi[/url]
pin_up_uz_dksr
20 Oct 25 at 11:02 pm
pin up bonus ro‘yxatdan o‘tish orqali [url=pinup5008.ru]pin up bonus ro‘yxatdan o‘tish orqali[/url]
pin_up_uz_wlSt
20 Oct 25 at 11:04 pm
купить диплом в ельце [url=https://www.rudik-diplom15.ru]https://www.rudik-diplom15.ru[/url] .
Diplomi_zpPi
20 Oct 25 at 11:04 pm
هی خوانندگان، در سایتهای قمار آنلاین فکر نمیکنید؛ چنین
سایتها پر از ریسکها اقتصادی، روانی و
اجتماعی هستند. من با تک ورود سرمایهام را نابود کردم.
اعتیاد به این بازیها تندتر
از امری که ذهن میکنید پیشرفت میکند.
به هیچ وجه وارد نشد!
کلاهبردارهای کازینو
20 Oct 25 at 11:05 pm
В Мурманске длинные сумерки, влажный ветер и «звонкие» подъезды старого фонда повышают чувствительность к свету и звуку. Поэтому выезд «Северный Медлайн» начинается с настройки среды: приглушается верхний свет, обеспечивается проветривание без сквозняка, смартфоны переводятся в «тихий режим» с «белым списком» близких. Только после этого врач проводит осмотр и запускает инфузионную терапию. Такой «тихий» сценарий снижает потребность в седативных препаратах и сохраняет физиологичность сна в первую ночь.
Узнать больше – http://vyvod-iz-zapoya-murmansk15.ru
Francistut
20 Oct 25 at 11:05 pm
globalchoicehub.cfd – Will bookmark this site for future shopping and gift ideas.
Maud Racz
20 Oct 25 at 11:07 pm
how to buy cheap feldene price
can i purchase cheap feldene without a prescription
20 Oct 25 at 11:08 pm
cd player with clock [url=https://www.alarm-radio-clocks.com]https://www.alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_zxOa
20 Oct 25 at 11:09 pm
сколько стоит проект перепланировки квартиры [url=http://www.proekt-pereplanirovki-kvartiry11.ru]сколько стоит проект перепланировки квартиры[/url] .
proekt pereplanirovki kvartiri_azot
20 Oct 25 at 11:09 pm
I’m more than happy to find this great site. I wanted to thank you for your
time for this wonderful read!! I definitely liked every part of
it and I have you saved as a favorite to check out
new information in your blog.
professional assignment writers in sri lanka
20 Oct 25 at 11:11 pm
Корзина роз от «Флорион» — классика, которая не устаревает: крупные бутоны, плотная посадка в оазис и идеальная сферическая линия создают эффект «вау» с первого взгляда. Варианты — от пастели до насыщенных монотональных решений, доступны размеры и миксы с зеленью. Выберите композицию на https://www.florion.ru/catalog/korzina-roz — каждая позиция снабжена ценой и фото, заказ оформляется в пару кликов. Профессиональная сборка и быстрая доставка по Москве — на высоте.
wawufendruck
20 Oct 25 at 11:13 pm
regina4congress – The campaign feels genuine, site design clean and trustworthy.
Zoma dMoka
20 Oct 25 at 11:13 pm
radio alarm clock phone combo [url=alarm-radio-clocks.com]alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_wtOa
20 Oct 25 at 11:13 pm
купить диплом фельдшера [url=http://www.rudik-diplom15.ru]купить диплом фельдшера[/url] .
Diplomi_nwPi
20 Oct 25 at 11:14 pm
pin up qanday pul yechiladi [url=http://pinup5007.ru/]http://pinup5007.ru/[/url]
pin_up_uz_zgsr
20 Oct 25 at 11:15 pm
https://gorillasocialwork.com/story24327919/code-promo-1xbet-cote-d-ivoire
Jamesmow
20 Oct 25 at 11:18 pm
pin up uz [url=https://pinup5007.ru/]pin up uz[/url]
pin_up_uz_ozsr
20 Oct 25 at 11:18 pm
топ прогнозы на футбол сегодня [url=www.kompyuternye-prognozy-na-futbol24.ru/]www.kompyuternye-prognozy-na-futbol24.ru/[/url] .
komputernie prognozi na fytbol_atsl
20 Oct 25 at 11:19 pm
can i order generic dapsone
how to buy generic dapsone without dr prescription
20 Oct 25 at 11:19 pm
Выездная бригада действует незаметно: гражданская одежда, быстрый вход без обсуждений на лестничных площадках, краткая коммуникация. На домофон и документы — нейтральные указания, на чеках — общие формулировки. Мы показываем, что конфиденциальность — не обещание, а набор конкретных технологий, встроенных в процесс помощи.
Изучить вопрос глубже – [url=https://narkologicheskaya-klinika-murmansk15.ru/]наркологическая клиника нарколог[/url]
PatrickNip
20 Oct 25 at 11:19 pm
диплом техникума купить дешево пять плюс [url=https://www.frei-diplom10.ru]диплом техникума купить дешево пять плюс[/url] .
Diplomi_qdEa
20 Oct 25 at 11:20 pm
pin up aviator strategiyasi [url=https://www.pinup5008.ru]pin up aviator strategiyasi[/url]
pin_up_uz_gtSt
20 Oct 25 at 11:20 pm
Важная деталь — отсутствие полипрагмазии. Мы используем «минимально достаточную фармакотерапию»: каждый препарат имеет цель, окно эффективности и критерии отмены. Это снижает побочные эффекты, убирает «тяжесть» днём и делает восстановление более естественным.
Детальнее – http://narkologicheskaya-klinika-v-spb14.ru
DanielRaply
20 Oct 25 at 11:21 pm
seo optimization agency [url=reiting-seo-kompanii.ru]reiting-seo-kompanii.ru[/url] .
reiting seo kompanii_kasn
20 Oct 25 at 11:21 pm
пин ап создать аккаунт [url=https://pinup5008.ru]https://pinup5008.ru[/url]
pin_up_uz_rhSt
20 Oct 25 at 11:22 pm
Chemical-mix.com, а где от 50гр, там надо 40 тон сразу запулить:rastakur: яж не барон нах:LSD:
Онлайн магазин – купить мефедрон, кокаин, бошки
Обращайтесь всегда рады!
ArturoIcedy
20 Oct 25 at 11:23 pm
Goodness, famous institutions collaborate ѡith hiɡher ed,
givіng your youngster premature access to tertiary
education and careers.
Aiyah, tⲟp institutions offer theater, enhancing expression fоr media аnd
comms jobs.
Goodness, гegardless whether school rеmains fancy,
arithmetic acts ⅼike the make-or-break topic foг developing confidence іn numƄers.
Av᧐iԀ play play lah, combine ɑ excellent primary school ᴡith mathematics superiority in оrder to assure high PSLE
marks as well as smooth shifts.
Օh, arithmetic serves аs the foundation stone fοr primary schooling, assisting
kids іn dimensional analysis to architecture paths.
Օh man, eѵen though institution гemains һigh-end, arithmetic serves
ass tһe decisive discipline in cultivates confidence regarding calculations.
Wow, mathematics іs thе groundwork pillar fօr primary
schooling, assisting children іn spatial thinking fⲟr design paths.
Punggol Cove Primary School cultivates ɑ lively community focused ⲟn extensive growth.
Ꭲһe school nurtures ingenious and resilient students.
Valour Primary School produces а positive community concentrated on character structure.
Тhe school motivates resilience аnd accomplishment.
Moms ɑnd dads choose it fоr values-drivenlearning.
Feel free to visit my web blog: Kaizenaire math tuition singapore
Kaizenaire math tuition singapore
20 Oct 25 at 11:23 pm
дизайн проект перепланировки квартиры [url=www.proekt-pereplanirovki-kvartiry11.ru]дизайн проект перепланировки квартиры[/url] .
proekt pereplanirovki kvartiri_ecot
20 Oct 25 at 11:24 pm
Hi! I could have sworn I’ve been to this web site before but after browsing through some of
the articles I realized it’s new to me. Anyhow, I’m
definitely pleased I discovered it and I’ll be bookmarking it and
checking back frequently!
A lot of
20 Oct 25 at 11:24 pm
https://tadalafiloexpress.com/# tadalafilo sin receta
MickeySum
20 Oct 25 at 11:24 pm
cd alarm [url=www.alarm-radio-clocks.com]www.alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_bxOa
20 Oct 25 at 11:25 pm
пин ап пополнение через карту [url=pinup5007.ru]pinup5007.ru[/url]
pin_up_uz_hbsr
20 Oct 25 at 11:26 pm
Мы заботимся о каждом аспекте чистоты, адаптируя нашу работу к особенностям помещения
и вашим требованиям.
поддерживающая уборка
20 Oct 25 at 11:28 pm
купить диплом с проводкой моего [url=http://www.frei-diplom1.ru]купить диплом с проводкой моего[/url] .
Diplomi_xbOi
20 Oct 25 at 11:31 pm
Folks, kiasu mode activated lah, solid primary mathematics guides іn improved STEM grasp аs ԝell as construction aspirations.
Oh, maths іs tһе base stone fοr primary education, assisting children ԝith geometric thinking tօ design careers.
Anglo-Chinese School (Independent) Junior College ρrovides a faith-inspired
education tһat harmonizes intellectual pursuits ᴡith ethical
values, empowering students tо beсome caring worldwide
people. Іts International Baccalaureate program encourages
vital thinking ɑnd questions, supported ƅy first-rate
resources аnd dedicated educators. Trainees excel іn а wide variety ⲟf сߋ-curricular activities,
fгom robotics tо music, building flexibility ɑnd imagination.
Tһe school’s emphasis on service knowing instills ɑ sense оf duty
ɑnd neighborhood engagement from an eaгly stage. Graduates ɑгe ѡell-prepared fߋr prominent universities, ƅring forward a legacy of quality аnd stability.
Hwa Chong Institution Junior College іs commemorated foг its smooth integrated
program tһɑt masterfully integrates extensive academic obstacles ѡith extensive character development,
cultivating ɑ brand-new generation оf worldwide scholars ɑnd ethical leaders who are equipped
tо take on complex global ⲣroblems. The institution boasts fіrst-rate infrastructure, including sophisticated гesearch study centers, multilingual libraries,
ɑnd innovation incubators, ᴡһere highly certified professors guide students tⲟward quality іn fields like
clinical research, entrepreneurial ventures, ɑnd cultural studies.
Students gain indispensable experiences tһrough extensive international exchange programs, global competitions іn mathematics аnd sciences, and collaborative jobs tһat expand thеir horizons ɑnd
refine their analytical ɑnd social skills.
By highlighting innovation tһrough initiatives ⅼike
student-led startups аnd innovation workshops, alongside service-oriented activities tһat promote social responsibility, thе
college develops resilience, versatility, ɑnd a strong moral
foundation іn itѕ students. The hսge alumni
network of Hwa Chong Institution Junior College ߋpens paths to elite
universities and prominent professions ɑround the ᴡorld,
highlighting tһе school’s enduring legacy օf fostering
intellectual expertise ɑnd principled management.
Ⲟh dear, without strong maths during Jnior College, eᴠеn top institution children may stumble in neхt-level calculations,
ѕo ultivate this promptly leh.
Oi oi, Singapore parents, math гemains likely thе most crucial primary discipline, fostering creativity
tһrough challenge-tackling іn groundbreaking professions.
Ⲟh man, regardless іf school is fancy, maths is tһe maке-or-break discipline tⲟ cultivates poise with calculations.
Օh no, primary math instructs everyday applications ѕuch aѕ money management, ѕo makе ѕure үouг youngster grasps іt
properly fгom yoսng.
Hey hey, Singapore parents, maths іs pеrhaps tһe highly impoгtant primary subject, promoting innovation іn issue-resolving for groundbreaking jobs.
Don’t tɑke lightly lah, link ɑ reputable Junior College alongside
mathematics excellence t᧐ ensure high A
Levels rеsults plus smooth transitions.
Math equips уou foг statistical analysis іn social sciences.
Alas, primary mathematics teaches practical սses liкe financial planning, tһerefore mɑke sure your kid gets
it right beginning еarly.
Ꮮook into my blog post: Jurong Pioneer Junior College
Jurong Pioneer Junior College
20 Oct 25 at 11:32 pm
Девушка была невероятной красоты, улыбка и грация делали массаж ещё более приятным. Настоящее наслаждение. Очень советую, индивидуалка цена нск – https://sibirka.com/. Лучший салон в Новосибирске, без сомнений.
Bobbyham
20 Oct 25 at 11:33 pm
проект перепланировки для согласования цена [url=proekt-pereplanirovki-kvartiry11.ru]proekt-pereplanirovki-kvartiry11.ru[/url] .
proekt pereplanirovki kvartiri_bnot
20 Oct 25 at 11:33 pm
карта ржищева
Jamesstalm
20 Oct 25 at 11:34 pm
Все рабочие где проверить промокод 1xбет вы можете найти бесплатно на этом сайте. Используйте промокод для получения бонуса до 32500 руб при регистрации. Приятно, что новички могут ввести промокод при регистрации, который даст право на получение приветственного бонуса на сумму до 32500 рублей. Самое главное — это относиться к ставкам и к игре в целом ответственно! Не стоит играть на последние или заемные деньги, стремясь таким образом заработать себе на жизнь.
Stanleyvonna
20 Oct 25 at 11:34 pm