Wanneer casino weer open South Holland

  1. Roulette Wiel: Wed liefde om u een mooie gemakkelijke manier om een overwinning te garanderen wanneer u klikt om te draaien.
  2. Gratis Casino I Mobilen - Rekening houdend met alles, heeft dit Grosvenor beoordeling denk dat deze operator heeft het recht om zichzelf te labelen als de meest populaire casino in het Verenigd Koninkrijk.
  3. Wat Heb Je Nodig Om Bingo Te Spelen: Jagen prooi groter dan zichzelf, terwijl heimelijk negeren van hun vijand early warning systeem is slechts een van de vele coole combinaties in het spel.

Winkans bij loterijen

Wild Spells Online Gokkast Spelen Gratis En Met Geld
We hebben deze download online casino's door middel van een strenge beoordeling proces om ervoor te zorgen dat u het meeste uit uw inzetten wanneer u wint.
Nieuwe Gokkasten Gratis
Dit betekent dat het hangt af van wat inkomstenbelasting bracket je in, en of de winst zal duwen u in een andere bracket.
The delight is de geanimeerde banner met de welkomstpromotie bij de eerste duik je in.

Pokersites voor Enschedeers

Nieuw Casino
De reel set is 7x7, met een totaal van 49 symbolen in het spel.
Casigo Casino 100 Free Spins
Holland Casino Eindhoven is een vestiging waar veel georganiseerd op het gebied van entertainment..
Casino Spel Gratis Slots

Sjoerd Maessen blog

PHP and webdevelopment

PHP hook, building hooks in your application

with 96,805 comments

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!

Written by Sjoerd Maessen

May 23rd, 2011 at 8:02 pm

Posted in API

Tagged with , , ,

96,805 Responses to 'PHP hook, building hooks in your application'

Subscribe to comments with RSS or TrackBack to 'PHP hook, building hooks in your application'.

  1. купить проведенный диплом моих [url=http://frei-diplom4.ru]купить проведенный диплом моих[/url] .

    Diplomi_rqOl

    19 Oct 25 at 2:40 am

  2. купить диплом в йошкар-оле [url=https://www.rudik-diplom3.ru]купить диплом в йошкар-оле[/url] .

    Diplomi_pmei

    19 Oct 25 at 2:40 am

  3. сколько стоит согласовать перепланировку квартиры [url=https://stoimost-soglasovaniya-pereplanirovki-kvartiry.ru/]https://stoimost-soglasovaniya-pereplanirovki-kvartiry.ru/[/url] .

  4. перепланировка москва [url=https://www.soglasovanie-pereplanirovki-kvartiry3.ru]https://www.soglasovanie-pereplanirovki-kvartiry3.ru[/url] .

  5. согласование перепланировки квартиры москва [url=http://www.proekt-pereplanirovki-kvartiry17.ru]согласование перепланировки квартиры москва[/url] .

  6. клиенты знают нас и нашу работу [url=https://soglasovanie-pereplanirovki-kvartiry3.ru/]soglasovanie-pereplanirovki-kvartiry3.ru[/url] .

  7. купить диплом в таганроге [url=www.rudik-diplom1.ru]www.rudik-diplom1.ru[/url] .

    Diplomi_uzer

    19 Oct 25 at 2:43 am

  8. купить диплом в химках [url=https://rudik-diplom10.ru/]купить диплом в химках[/url] .

    Diplomi_yhSa

    19 Oct 25 at 2:43 am

  9. купить проведенный диплом одно [url=http://www.frei-diplom5.ru]купить проведенный диплом одно[/url] .

    Diplomi_krPa

    19 Oct 25 at 2:43 am

  10. точные прогнозы на хоккей [url=www.prognozy-na-khokkej5.ru]www.prognozy-na-khokkej5.ru[/url] .

  11. купить диплом в орле [url=http://www.rudik-diplom13.ru]http://www.rudik-diplom13.ru[/url] .

    Diplomi_fbon

    19 Oct 25 at 2:44 am

  12. диплом купить с занесением в реестр отзывы [url=http://www.frei-diplom6.ru]http://www.frei-diplom6.ru[/url] .

    Diplomi_bsOl

    19 Oct 25 at 2:44 am

  13. купить диплом с проводкой [url=https://frei-diplom2.ru/]купить диплом с проводкой[/url] .

    Diplomi_lxEa

    19 Oct 25 at 2:45 am

  14. tadalafil italiano approvato AIFA [url=http://pilloleverdi.com/#]acquistare Cialis online Italia[/url] miglior prezzo Cialis originale

    GeorgeHot

    19 Oct 25 at 2:45 am

  15. Angelolix

    19 Oct 25 at 2:46 am

  16. поставщик медоборудования [url=https://www.xn—–6kcdfldbfd2aga1bqjlbbb4b4d7d1fzd.xn--p1ai]https://www.xn—–6kcdfldbfd2aga1bqjlbbb4b4d7d1fzd.xn--p1ai[/url] .

  17. купить диплом в соликамске [url=rudik-diplom8.ru]купить диплом в соликамске[/url] .

    Diplomi_qtMt

    19 Oct 25 at 2:50 am

  18. купить диплом в димитровграде [url=https://rudik-diplom10.ru]купить диплом в димитровграде[/url] .

    Diplomi_paSa

    19 Oct 25 at 2:50 am

  19. Good day! This is kind of off topic but I need some guidance
    from an established blog. Is it very hard to set up your own blog?
    I’m not very techincal but I can figure things out pretty quick.

    I’m thinking about making my own but I’m not sure where to begin. Do you have any
    tips or suggestions? Thanks

  20. мелбет фрибет за регистрацию [url=http://www.melbetbonusy.ru]мелбет фрибет за регистрацию[/url] .

    melbet_ezOi

    19 Oct 25 at 2:50 am

  21. Wonderful beat ! I wish to apprentice while you amend your site, how
    could i subscribe for a blog web site? The
    account helped me a appropriate deal. I were tiny bit acquainted of this your broadcast provided bright
    transparent idea

  22. диплом купить проведенный [url=www.frei-diplom5.ru/]диплом купить проведенный[/url] .

    Diplomi_wxPa

    19 Oct 25 at 2:50 am

  23. Hello, i think that i saw you visited my weblog thus i
    came to “return the favor”.I am attempting to find things to enhance
    my web site!I suppose its ok to use a few of your ideas!!

    BETFLIX 45

    19 Oct 25 at 2:51 am

  24. узаконить перепланировку квартиры цена [url=stoimost-soglasovaniya-pereplanirovki-kvartiry.ru]stoimost-soglasovaniya-pereplanirovki-kvartiry.ru[/url] .

  25. как купить легально диплом о высшем образовании [url=www.frei-diplom6.ru]как купить легально диплом о высшем образовании[/url] .

    Diplomi_kvOl

    19 Oct 25 at 2:51 am

  26. купить диплом в обнинске [url=www.rudik-diplom13.ru/]www.rudik-diplom13.ru/[/url] .

    Diplomi_yfon

    19 Oct 25 at 2:52 am

  27. купить диплом об образовании с реестром [url=frei-diplom2.ru]купить диплом об образовании с реестром[/url] .

    Diplomi_skEa

    19 Oct 25 at 2:53 am

  28. футбол сегодня прогнозы [url=https://prognozy-na-futbol-10.ru/]https://prognozy-na-futbol-10.ru/[/url] .

  29. перепланировка услуги [url=https://www.soglasovanie-pereplanirovki-kvartiry14.ru]https://www.soglasovanie-pereplanirovki-kvartiry14.ru[/url] .

  30. стоимость перепланировки квартиры в бти [url=https://www.zakazat-proekt-pereplanirovki-kvartiry11.ru]https://www.zakazat-proekt-pereplanirovki-kvartiry11.ru[/url] .

  31. Anthonycam

    19 Oct 25 at 2:55 am

  32. купить диплом с занесением в реестр в нижнем тагиле [url=https://www.frei-diplom3.ru]купить диплом с занесением в реестр в нижнем тагиле[/url] .

    Diplomi_nxKt

    19 Oct 25 at 2:55 am

  33. купить диплом специалиста [url=http://rudik-diplom10.ru/]купить диплом специалиста[/url] .

    Diplomi_jgSa

    19 Oct 25 at 2:56 am

  34. купить диплом техникума Днепр [url=http://www.educ-ua7.ru]http://www.educ-ua7.ru[/url] .

    Diplomi_pmea

    19 Oct 25 at 2:56 am

  35. купить диплом в ярославле [url=https://www.rudik-diplom5.ru]купить диплом в ярославле[/url] .

    Diplomi_homa

    19 Oct 25 at 2:56 am

  36. диплом о среднем образовании купить легально [url=frei-diplom5.ru]frei-diplom5.ru[/url] .

    Diplomi_xlPa

    19 Oct 25 at 2:56 am

  37. купить диплом о высшем образовании с занесением в реестр цены [url=http://frei-diplom4.ru]купить диплом о высшем образовании с занесением в реестр цены[/url] .

    Diplomi_rvOl

    19 Oct 25 at 2:56 am

  38. купить диплом в анжеро-судженске [url=www.rudik-diplom3.ru/]www.rudik-diplom3.ru/[/url] .

    Diplomi_boei

    19 Oct 25 at 2:56 am

  39. как купить диплом техникума с занесением в реестр цена в [url=frei-diplom6.ru]как купить диплом техникума с занесением в реестр цена в[/url] .

    Diplomi_qdOl

    19 Oct 25 at 2:57 am

  40. Ukrainian President Volodymyr Zelensky condemned Russian attacks on the Ukrainian regions of Kharkiv, Zaporizhzhia and Sumy on Monday, saying that the Kremlin intends to “humiliate diplomatic efforts” just hours before European leaders visit the White House.
    [url=https://kra—42-at.ru]kra35 at[/url]
    “The Russian war machine continues to destroy lives despite everything,” Zelensky said in a statement, hours before he’s due to meet US President Donald Trump in the Oval Office. “That is precisely why we are seeking assistance to put an end to the killings. That is why reliable security guarantees are required. That is why Russia should not be rewarded for its participation in this war.”
    [url=https://kra41-at.net]kra36 at[/url]
    “Everyone seeks dignified peace and true security,” the Ukrainian president said. “And at this very moment, the Russians are attacking Kharkiv, Zaporizhzhia, the Sumy region, and Odesa, destroying residential buildings and our civilian infrastructure.”

    At least seven people were killed in Russia’s attack? on Kharkiv and a further three killed in the ballistic missile strike on the city of Zaporizhzhia, with scores more injured, according to Ukrainian authorities.

    “This was a demonstrative and cynical Russian strike,” Zelensky added.
    kra37 at
    https://kra-42-at.net

    Rafaelwem

    19 Oct 25 at 2:58 am

  41. проектирование перепланировки [url=https://soglasovanie-pereplanirovki-kvartiry3.ru]https://soglasovanie-pereplanirovki-kvartiry3.ru[/url] .

  42. Я извиняюсь, но, по-моему, Вы не правы. Я уверен. Давайте обсудим. Пишите мне в PM.
    имеются ли возможность денежных транзакций: при получении? Заказываю любую парфюмерию только у нас, [url=https://www.google.com/m/storepages?q=spellsmell.ru&c=RU]https://www.google.com/m/storepages?q=spellsmell.ru&c=RU[/url] ведь в жизни не подводили и надежность всегда соответствует желанному результату».

    IdaLok

    19 Oct 25 at 2:58 am

  43. купить диплом моториста [url=rudik-diplom8.ru]купить диплом моториста[/url] .

    Diplomi_zmMt

    19 Oct 25 at 2:58 am

  44. купить диплом в альметьевске [url=rudik-diplom1.ru]купить диплом в альметьевске[/url] .

    Diplomi_qzer

    19 Oct 25 at 2:59 am

  45. I seriously love your site.. Pleasant colors & theme. Did you create this website yourself?
    Please reply back as I’m planning to create my very own site and want to learn where you got
    this from or what the theme is called. Thank you!

  46. MyronTuh

    19 Oct 25 at 3:00 am

  47. купить медицинский диплом медсестры [url=http://frei-diplom13.ru/]купить медицинский диплом медсестры[/url] .

    Diplomi_ymkt

    19 Oct 25 at 3:00 am

  48. Дизайнерский ремонт: искусство преображения пространства

    Дизайн интерьера играет важную роль в создании комфортной и уютной атмосферы в доме. Сегодня мы поговорим о таком понятии, как дизайнерский ремонт, который позволяет превратить обычное жилье в уникальное пространство, отражающее индивидуальность владельца.
    [url=https://designapartment.ru ]дизайнерский ремонт с мебелью[/url]
    Что такое дизайнерский ремонт?

    Дизайнерский ремонт — это комплекс работ, направленных на создание оригинального дизайна помещения. Это не просто обновление отделки, а полноценный творческий процесс, включающий разработку концепции, подбор материалов и мебели, а также реализацию проекта.

    Ключевые особенности дизайнерского ремонта:
    [url=https://designapartment.ru ]дизайнерский ремонт квартиры[/url]
    – Индивидуальный подход к каждому проекту.
    – Использование качественных материалов и современных технологий.
    – Создание уникального стиля, соответствующего вкусам заказчика.
    – Оптимизация пространства для максимального комфорта и функциональности.

    Виды дизайнерских ремонтов
    [url=https://designapartment.ru]дизайнерский ремонт апартаментов под ключ[/url]
    Существует несколько видов дизайнерских ремонтов, каждый из которых имеет свои особенности и преимущества.

    #1 Дизайнерский ремонт квартиры

    Это наиболее распространенный вид ремонта, подходящий для тех, кто хочет обновить интерьер своей городской квартиры. Специалисты разрабатывают проект, учитывая размеры помещений, пожелания клиента и бюджет. Такой ремонт включает перепланировку, замену коммуникаций, отделочные работы и декорирование.

    Пример дизайна: светлая гостиная с панорамными окнами, минималистичный дизайн кухни и спальни в стиле лофт.

    #2 Дизайнерский ремонт дома

    Такой ремонт предполагает полное преобразование жилого дома, начиная от фундамента и заканчивая крышей. Здесь важно учитывать архитектурные особенности здания, климатические условия региона и предпочтения владельцев. Часто используется экодизайн, натуральные материалы и энергосберегающие технологии.

    Пример дизайна: просторный холл с камином, стеклянная веранда с видом на сад, спальня в пастельных тонах.

    #3 Дизайнерский ремонт виллы

    Ремонт вилл требует особого подхода, поскольку такие объекты часто расположены в живописных местах и имеют большую площадь. Важно сохранить гармонию с окружающей средой, используя природные материалы и цвета. Особое внимание уделяется созданию зон отдыха, бассейнов и садов.

    Пример дизайна: роскошная вилла с бассейном, открытая терраса с видами на море, спальная зона в тропическом стиле.

    #4 Дизайнерский ремонт коттеджа

    Коттедж отличается от обычного дома наличием придомового участка и возможностью организации дополнительных функциональных зон. Ремонт коттеджей включает работу над фасадом, ландшафтом и внутренним пространством. Стили могут варьироваться от классики до хай-тека.

    Пример дизайна: двухэтажный коттедж с мансардой, гостиная-столовая в скандинавском стиле, детская комната с игровой зоной.

    #5 Дизайнерский ремонт пентхауса

    Пентхаус — это элитное жилье, расположенное на верхних этажах зданий с панорамными видами. Для такого типа недвижимости характерны высокие потолки, большие окна и эксклюзивные элементы декора. Проектирование пентхауса требует учета особенностей конструкции здания и пожеланий клиентов относительно приватности и удобства.

    Пример дизайна: современный пентхаус с открытой планировкой, кабинет с видом на город, зона отдыха с джакузи.

    Заключение

    Дизайнерский ремонт — это возможность создать идеальное пространство для жизни и отдыха. Независимо от того, хотите ли вы обновить квартиру, дом, виллу, коттедж или пентхаус, профессиональный подход гарантирует вам комфорт и эстетическое удовольствие на долгие годы.
    дизайнерский ремонт виллы под ключ
    https://designapartment.ru

    KennethReR

    19 Oct 25 at 3:01 am

  49. Very nice article. I absolutely love this site.
    Continue the good work!

  50. купить диплом техникума строительного [url=www.educ-ua7.ru/]www.educ-ua7.ru/[/url] .

    Diplomi_aaea

    19 Oct 25 at 3:02 am

Leave a Reply