Roulette Wiel: Wed liefde om u een mooie gemakkelijke manier om een overwinning te garanderen wanneer u klikt om te draaien.
  • 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.
  • 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 75,553 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 , , ,

    75,553 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. Сергей Арсеньев — художник, чьи портреты становятся частью семейной истории. Его работы востребованы не только как искусство, но и как память, запечатлённая с глубоким уважением к личности.
      https://arsenev-art.ru/

      JasonDug

      4 Oct 25 at 7:50 am

    2. Сразу после вызова нарколог прибывает на дом для проведения тщательного осмотра. Врач измеряет жизненно важные показатели, такие как пульс, артериальное давление и температура, а также собирает краткий анамнез для определения степени алкогольной интоксикации. Эти данные служат основой для разработки индивидуальной стратегии лечения.
      Узнать больше – https://kapelnica-ot-zapoya-lugansk-lnr00.ru/kapelnicza-ot-zapoya-na-domu-lugansk-lnr/

      Scottnal

      4 Oct 25 at 7:50 am

    3. прочистка канализации [url=https://chistka-zasorov-kanalizatsii.kz/]прочистка канализации[/url] .

    4. Matthewbox

      4 Oct 25 at 7:51 am

    5. хоккей ставки [url=https://prognozy-na-khokkej4.ru/]prognozy-na-khokkej4.ru[/url] .

    6. медицинская техника [url=https://xn—–6kcdfldbfd2aga1bqjlbbb4b4d7d1fzd.xn--p1ai]https://xn—–6kcdfldbfd2aga1bqjlbbb4b4d7d1fzd.xn--p1ai[/url] .

    7. Центр медицинского лицензирования обеспечил полное сопровождение процесса получения лицензии, включая подготовку документов и взаимодействие с государственными органами https://licenz.pro/

      BrianRomma

      4 Oct 25 at 7:54 am

    8. PatrickGop

      4 Oct 25 at 7:54 am

    9. It’s going to be end of mine day, however before ending I am reading this impressive piece of writing to increase my experience.

    10. медоборудование [url=xn—–6kcdfldbfd2aga1bqjlbbb4b4d7d1fzd.xn--p1ai]xn—–6kcdfldbfd2aga1bqjlbbb4b4d7d1fzd.xn--p1ai[/url] .

    11. купить диплом техникума легкой промышленности [url=www.frei-diplom12.ru/]купить диплом техникума легкой промышленности[/url] .

      Diplomi_ycPt

      4 Oct 25 at 7:56 am

    12. Этот этап лечения направлен на купирование острых симптомов, связанных с абстинентным синдромом. Пациенту назначаются современные препараты, способствующие выведению токсинов, нормализации работы сердца, печени, центральной нервной системы.
      Подробнее тут – http://narkologicheskaya-klinika-volgograd9.ru

      Josephhag

      4 Oct 25 at 7:56 am

    13. Disney made a smart choice’
      Despite the comparisons, Abu Dhabi isn’t positioning itself as a direct rival to Orlando — it’s aiming to be something more. The emirate sees its theme parks as part of a bigger portfolio of attractions, alongside cultural landmarks, luxury hotels, pristine beaches, and desert adventures.
      [url=http://trips45.cc]tripscan top[/url]
      A 15-minute drive from Yas Island, Saadiyat Island is home to the Louvre Abu Dhabi, a franchised outpost of the famous Paris art museum, which welcomed 1.4 million visitors last year, 84% from abroad. The Guggenheim Abu Dhabi and Zayed National Museum are both under construction, adding to a cultural district that will be one of the region’s most concentrated hubs of art and heritage.

      “Abu Dhabi’s unique appeal lies in the diversity of our tourism offering,” Al Geziry added. “For thrill-seekers, we have record-breaking roller coasters and dune bashing in the desert. For culture lovers, historic sites like Al Ain Oasis and institutions like the Saadiyat museums. And for luxury travelers, world-class dining, private island resorts, and high-end shopping.

      “Where else can you start your day under the Louvre’s iconic rain-of-light dome and end it in the immersive, story-driven worlds of Warner Bros. World or Ferrari World?”
      http://trips45.cc
      трипскан вход
      Still, not everyone is convinced that Disney’s expansion into the Middle East is a sure bet.

      “The region has seen its share of false starts,” says Dennis Speigel, founder of the International Theme Park Services consultancy, comparing it to neighboring Dubai’s patchy record with theme park expansion ambitions in the mid-2010s. “Several of them struggled for profitability in their first decade.”

      Related article
      Saadiyat Cultural District in Abu Dhabi is set to become one of the world’s preeminent arts and culture hubs, with one of the highest concentrations of cultural institutions globally. But the area isn’t just for art connoisseurs. Explore what to do in the new district, from iconic museums to luxurious beach days to decadent dining options.
      You can walk between the Louvre and the Guggenheim in this new art district

      Spiegel believes Abu Dhabi is different. “Disney made a smart choice. The infrastructure, safety, and existing leisure developments create an ideal entry point,” he told CNN earlier this year. “It’s a much more controlled and calculated move.”

      Under its Tourism Strategy 2030, Abu Dhabi aims to grow annual visitors from 24 million in 2023 to more than 39 million by the end of the decade. With Disneyland as a centerpiece, those targets may well be surpassed. The city’s population has already grown from 2.7 million in 2014 to more than 4.1 million today, a reflection of its rising profile as a regional hub.

      Yas Island alone has been transformed in the space of a decade from a largely undeveloped stretch of sand to a self-contained resort destination, complete with golf courses, marinas, a mall, more than 160 restaurants, and a cluster of high-end hotels.

      Orlando’s head start remains formidable — it still offers multiple Disney and Universal parks, has decades of brand loyalty, and an infrastructure built to handle tens of millions of tourists annually.

      But Abu Dhabi is catching up fast. Its combination of frictionless travel, year-round comfort, cutting-edge attractions, and a cultural scene that adds depth to the experience gives Abu Dhabi its own unique selling point, potentially offering a model for the next generation of theme park capital.

      KeithUnlah

      4 Oct 25 at 7:57 am

    14. v1av7 – The design is minimal and clean, pleasant to look at.

      Lucie Barnhart

      4 Oct 25 at 7:57 am

    15. Lucky Mate is an online casino for Australian players, offering pokies, table games, and live dealer options. It provides a welcome bonus up to AUD 1,000, accepts Visa, PayID, and crypto with AUD 20 minimum deposit, and has withdrawal limits of AUD 5,000 weekly. Licensed, it promotes safe play: Lucky Mate Casino

      Edwardfrevy

      4 Oct 25 at 7:58 am

    16. Все этапы лицензирования медицинской деятельности были организованы профессионально с Журавлев Консалтинг Групп, что позволило получить лицензию медика быстро и корректно, https://licenz.pro/

      BrianRomma

      4 Oct 25 at 7:59 am

    17. [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]honeypot code[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]honeypot code[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]honeypot code[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]honeypot code[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]honeypot code[/url]
      [url=https://ethercodeinnovation.com/]honeypot code[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]solana honeypot[/url]
      [url=https://ethercodeinnovation.com/]honeypot token[/url]
      [url=https://ethercodeinnovation.com/]solana honeypot[/url]

      TimothyBex

      4 Oct 25 at 7:59 am

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

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

      Diplomi_sqMi

      4 Oct 25 at 7:59 am

    20. ставки на хоккей прогнозы [url=prognozy-na-khokkej5.ru]ставки на хоккей прогнозы[/url] .

    21. jekflix – The design feels modern and sleek, really easy on the eyes.

      Loraine Okuhara

      4 Oct 25 at 8:01 am

    22. прогноз на хоккей сегодня [url=http://prognozy-na-khokkej4.ru]прогноз на хоккей сегодня[/url] .

    23. прочистка труб канализации [url=http://chistka-zasorov-kanalizatsii.kz/]прочистка труб канализации[/url] .

    24. worldloans – The design feels professional and functional without distractions.

      Edwardo Goerdel

      4 Oct 25 at 8:04 am

    25. усиление углеволокном [url=https://dpcity.ru/usilenie-betona-uglevoloknom-fundamentov-svayami-i-gruntov-inektirovaniem-yuviks-grupp-spb//]dpcity.ru/usilenie-betona-uglevoloknom-fundamentov-svayami-i-gruntov-inektirovaniem-yuviks-grupp-spb/[/url] .

    26. купить свидетельство о рождении [url=https://www.rudik-diplom11.ru]купить свидетельство о рождении[/url] .

      Diplomi_kpMi

      4 Oct 25 at 8:07 am

    27. sildenafil 60 mg cost [url=https://truevitalmeds.shop/#]Buy sildenafil online usa[/url] buy sildenafil india online

      TimothyArrar

      4 Oct 25 at 8:08 am

    28. мед колледж купить диплом [url=frei-diplom8.ru]мед колледж купить диплом[/url] .

      Diplomi_kssr

      4 Oct 25 at 8:09 am

    29. 소액결제 현금화 방법 5가지 · 상품권 현금화 (수수료 10-15%) · 정보이용료 현금화 (수수료 20-30%) · 콘텐츠이용료 현금화 · 게임 아이템 현금화 · 교통카드 충전
      현금화

    30. fhkaslfjlas – The design is simple, modern, and easy on the eyes.

      Sharlene Dambra

      4 Oct 25 at 8:09 am

    31. https://tadalmedspharmacy.com/# Generic tadalafil 20mg price

      Williamjib

      4 Oct 25 at 8:09 am

    32. Крайне советую https://sup.jairuk.com/hello-world-2/

      PedroMop

      4 Oct 25 at 8:10 am

    33. В условиях Донецка ДНР наши специалисты применяют современную методику вывода из запоя на дому, которая включает в себя несколько последовательных этапов для обеспечения максимально безопасного и эффективного лечения.
      Подробнее тут – [url=https://vyvod-iz-zapoya-donetsk-dnr0.ru/]срочный вывод из запоя в донецке[/url]

      Claytonfix

      4 Oct 25 at 8:11 am

    34. купить кухню в спб от производителя [url=http://kuhni-spb-2.ru]купить кухню в спб от производителя[/url] .

      kyhni spb_gimn

      4 Oct 25 at 8:11 am

    35. усиление грунтов [url=http://privetsochi.ru/blog/realty_sochi/93972.html]http://privetsochi.ru/blog/realty_sochi/93972.html[/url] .

    36. melbet зеркало скачать [url=http://melbetofficialsite.ru/]melbet зеркало скачать[/url] .

      melbet_cfsa

      4 Oct 25 at 8:11 am

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

    38. It’s an amazing piece of writing in favor of all the internet
      users; they will take advantage from it I am sure.

      visit website

      4 Oct 25 at 8:13 am

    39. прогноз хоккей на сегодня [url=http://www.prognozy-na-khokkej5.ru]прогноз хоккей на сегодня[/url] .

    40. Andreasvek

      4 Oct 25 at 8:15 am

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

      Diplomi_cxPt

      4 Oct 25 at 8:15 am

    42. Получение лицензии на медицинскую деятельность с сопровождением специалистов оказалось быстрым и простым, все документы были подготовлены правильно и поданы вовремя, https://licenz.pro/

      BrianRomma

      4 Oct 25 at 8:17 am

    43. усиление грунтов [url=http://privetsochi.ru/blog/realty_sochi/93972.html]http://privetsochi.ru/blog/realty_sochi/93972.html[/url] .

    44. кухни от производителя спб [url=https://kuhni-spb-2.ru/]кухни от производителя спб[/url] .

      kyhni spb_domn

      4 Oct 25 at 8:18 am

    45. ставки на хоккей сегодня прогнозы [url=http://www.prognozy-na-khokkej4.ru]http://www.prognozy-na-khokkej4.ru[/url] .

    46. купить диплом в михайловске [url=http://www.rudik-diplom10.ru]http://www.rudik-diplom10.ru[/url] .

      Diplomi_dySa

      4 Oct 25 at 8:19 am

    47. прочистка канализации цена [url=https://chistka-zasorov-kanalizatsii.kz/]chistka-zasorov-kanalizatsii.kz[/url] .

    48. самые точные прогнозы на хоккей [url=https://prognozy-na-khokkej5.ru/]самые точные прогнозы на хоккей[/url] .

    49. Сдаете ЕГЭ или ОГЭ и мечтаете увереннее пройти экзамены без лишней нервозности? Онлайн-школа V-Electronic подбирает курсы по всем ключевым предметам, от математики и русского до физики и информатики, а также языковые программы с носителями. Гибкий график, практические задания и регулярные проверки знаний делают подготовку прозрачной и эффективной. Подробности и актуальные предложения — на https://v-electronic.ru/onlain-shkola/ выбирайте программу за минуту и начинайте обучение уже сегодня.

      ivujecoeld

      4 Oct 25 at 8:20 am

    50. PatrickGop

      4 Oct 25 at 8:20 am

    Leave a Reply