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 30,687 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 , , ,

    30,687 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://arus-diplom31.ru/]http://arus-diplom31.ru/[/url] .

      Diplomi_mspl

      30 Aug 25 at 6:32 am

    2. NormanInolo

      30 Aug 25 at 6:33 am

    3. recensioni Book of Ra Deluxe slot [url=https://1wbook.com/#]giri gratis Book of Ra Deluxe[/url] migliori casino online con Book of Ra

      Aaronreima

      30 Aug 25 at 6:33 am

    4. We stumbled over here by a different web address and thought I might as well check things
      out. I like what I see so now i’m following you.
      Look forward to exploring your web page again.

    5. DanielVeiff

      30 Aug 25 at 6:36 am

    6. read the full info here

      PHP hook, building hooks in your application – Sjoerd Maessen blog at Sjoerd Maessen blog

    7. RichardPep

      30 Aug 25 at 6:40 am

    8. I’m not sure exactly why but this blog is loading extremely slow
      for me. Is anyone else having this issue or is it a
      issue on my end? I’ll check back later and see if the
      problem still exists.

      watitoto

      30 Aug 25 at 6:43 am

    9. купить аттестаты 11 класс цена [url=www.arus-diplom24.ru]купить аттестаты 11 класс цена[/url] .

      Diplomi_imsa

      30 Aug 25 at 6:43 am

    10. RobertfeM

      30 Aug 25 at 6:43 am

    11. Hello everyone, it’s my first visit at this web page, and article is in fact fruitful
      designed for me, keep up posting these types of articles or reviews.

    12. Планируете ремонт https://remontkomand.kz в Алматы и боитесь скрытых платежей? Опубликовали полный и честный прайс-лист! Узнайте точные расценки на все виды работ — от демонтажа до чистовой отделки. Посчитайте стоимость своего ремонта заранее и убедитесь в нашей прозрачности. Никаких «сюрпризов» в итоговой смете!

      remontkomand-407

      30 Aug 25 at 6:51 am

    13. Мы можем предложить документы учебных заведений, расположенных в любом регионе России. Приобрести диплом о высшем образовании:
      [url=http://jobflux.eu/employer/43159/diplomiki/]купить аттестат 11 классов[/url]

      Diplomi_tkPn

      30 Aug 25 at 6:53 am

    14. Когда организм на пределе, важна срочная помощь в Самаре — это команда опытных наркологов, которые помогут быстро и мягко выйти из запоя без вреда для здоровья.
      Разобраться лучше – [url=https://vyvod-iz-zapoya-v-stacionare-samara16.ru/]срочный вывод из запоя в самаре[/url]

      Pablotug

      30 Aug 25 at 6:53 am

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

      Diplomi_zvpl

      30 Aug 25 at 6:53 am

    16. Проблемы зависимости — актуальная тема для современного общества. Эти состояния оказывают серьезное влияние на личность, семью и общественные связи. Наркологическая клиника “Перезагрузка” предлагает широкий спектр услуг для людей, страдающих от различных зависимостей, таких как алкоголизм, наркомания и игромания. Наша задача заключается в комплексном подходе к лечению, что обеспечивает успешные результаты для наших пациентов.
      Подробнее тут – http://zavisim-alko.ru

      KennethGlolo

      30 Aug 25 at 6:55 am

    17. DanielVeiff

      30 Aug 25 at 6:58 am

    18. Самостоятельно выйти из запоя — почти невозможно. В Самаре врачи клиники проводят медикаментозный вывод из запоя с круглосуточным выездом. Доверяйте профессионалам.
      Выяснить больше – [url=https://vyvod-iz-zapoya-v-stacionare-samara15.ru/]наркология вывод из запоя самара[/url]

      Michaelamoma

      30 Aug 25 at 6:58 am

    19. Native Path Creatine looks like a great choice for anyone serious
      about boosting strength, endurance, and muscle recovery.
      I really like that it’s clean, simple, and focused on quality without unnecessary fillers.

      Definitely a solid supplement for athletes or anyone wanting to improve performance naturally

    20. Hi there Dear, are you really visiting this site daily, if so
      afterward you will definitely take good knowledge.

    21. купить диплом пту в реестре [url=http://www.arus-diplom31.ru]купить диплом пту в реестре[/url] .

      Diplomi_wwpl

      30 Aug 25 at 7:00 am

    22. Вызов нарколога — это важный шаг для людей, испытывающих проблемы с зависимостями. Служба наркологической помощи предоставляет экстренную наркологическую помощь и консультацию нарколога, что особенно необходимо в кризисных ситуациях . Симптомы наркотической зависимости могут проявляться по-разному , и важно знать, когда следует обращаться за медицинской помощью при алкоголизме. Помощь при алкоголизме и лечение наркотической зависимости требуют квалифицированного вмешательства. Алкоголизм и его последствия могут быть катастрофическими, поэтому важно искать помощь для людей с зависимостями, включая программы реабилитации. На сайте narkolog-tula017.ru вы можете узнать, как обратиться к наркологу или получить конфиденциальную помощь для наркозависимых. Не стесняйтесь обращаться по телефону наркологической службы , чтобы получить необходимую поддержку и помощь .

    23. купить аттестаты гознак за 11 класс [url=https://arus-diplom24.ru]купить аттестаты гознак за 11 класс[/url] .

      Diplomi_kesa

      30 Aug 25 at 7:07 am

    24. Good day! Do you know if they make any plugins to assist with SEO?
      I’m trying to get my blog to rank for some targeted keywords
      but I’m not seeing very good success. If you
      know of any please share. Appreciate it!

      Have a look at my website trusted proxies

      trusted proxies

      30 Aug 25 at 7:08 am

    25. Готовы придать дому характер? La loft изготавливает лестницы, перила, перегородки и лофт?мебель на заказ: металл, дерево, стекло — прочность, стиль и точность под ваши размеры. Средний чек ниже рынка за счет собственного производства и покраски, монтаж под ключ, на связи 24/7. Ищете лестница винтовая? Смотрите портфолио и выберите решение под ваш интерьер на laloft.ru Оставляйте заявку — сделаем бесплатный замер, подскажем по проекту и срокам.

      KaxoxWed

      30 Aug 25 at 7:11 am

    26. диплом о среднем профессиональном образовании с занесением в реестр купить [url=www.arus-diplom32.ru]диплом о среднем профессиональном образовании с занесением в реестр купить[/url] .

      Diplomi_dbpi

      30 Aug 25 at 7:12 am

    27. Мы можем предложить документы институтов, расположенных на территории всей Российской Федерации. Приобрести диплом о высшем образовании:
      [url=http://birdiey.com/read-blog/28985_kupit-attestat-11-klass.html/]купить аттестат за 11 класс с занесением в реестр отзывы[/url]

      Diplomi_wwPn

      30 Aug 25 at 7:12 am

    28. preman69 slot: 1win69 – preman69 login

      Miltondep

      30 Aug 25 at 7:13 am

    29. DanielVeiff

      30 Aug 25 at 7:20 am

    30. Планируете ремонт https://remontkomand.kz в Алматы и боитесь скрытых платежей? Опубликовали полный и честный прайс-лист! Узнайте точные расценки на все виды работ — от демонтажа до чистовой отделки. Посчитайте стоимость своего ремонта заранее и убедитесь в нашей прозрачности. Никаких «сюрпризов» в итоговой смете!

      remontkomand-494

      30 Aug 25 at 7:20 am

    31. купить аттестат 11 класса [url=http://arus-diplom24.ru/]купить аттестат 11 класса[/url] .

      Diplomi_oqsa

      30 Aug 25 at 7:28 am

    32. купить диплом в реестр [url=https://www.arus-diplom31.ru]купить диплом в реестр[/url] .

      Diplomi_uapl

      30 Aug 25 at 7:30 am

    33. купить аттестат 2015 года за 11 класс [url=arus-diplom24.ru]arus-diplom24.ru[/url] .

      Diplomi_oisa

      30 Aug 25 at 7:34 am

    34. Why viewers still use to read news papers when in this technological globe all is accessible on web?

    35. For newest information you have to pay a visit world wide web and on the web I found this web site
      as a most excellent website for latest updates.

    36. I am really enjoying the theme/design of your blog.
      Do you ever run into any web browser compatibility issues?
      A number of my blog readers have complained about my site not operating correctly in Explorer
      but looks great in Firefox. Do you have any
      tips to help fix this problem?

      slot 4d

      30 Aug 25 at 7:41 am

    37. DanielVeiff

      30 Aug 25 at 7:42 am

    38. диплом купить реестр [url=https://www.arus-diplom31.ru]диплом купить реестр[/url] .

      Diplomi_czpl

      30 Aug 25 at 7:47 am

    39. Really good piece.
      I really admire the way you described this subject.

      It’s nicely explained and helpful for everyone.

      I always look across posts that hardly bring any value, but this blog is unique.

      The way you wrote really shows.

      Keep up the fantastic job, and I look forward to reading more content from you in the future.

      Thanks for posting this!

    40. I was recommended this blog by my cousin. I am not sure whether this post is written by him as no one
      else know such detailed about my trouble. You are incredible!
      Thanks!

    41. Детоксикация организма, проводимая на дому, помогает очистить кровь от токсинов, накопившихся из-за длительного употребления алкоголя или наркотических веществ. Она проводится с использованием специально подобранных медикаментов, которые улучшают работу печени, почек и других органов.
      Подробнее – [url=https://narcolog-na-dom-v-krasnoyarske55.ru/]вызов нарколога на дом красноярский край[/url]

      CurtisUsalk

      30 Aug 25 at 7:57 am

    42. Liv Pure seems like a solid supplement for people looking to boost
      their metabolism and support liver health at the same time.
      I like how it combines natural ingredients that target energy, digestion, and overall wellness.
      Definitely worth checking out if you’re serious about sustainable weight management and better daily vitality.

      Liv Pure

      30 Aug 25 at 7:58 am

    43. OMT’ѕ interactive tests gamify knowing, mаking math addictive fоr Singapore trainees andd inspiring tһem to promote exceptional exam grades.

      Broaden your horizons wіth OMT’s upcoming brand-neѡ physical аrea opening in September 2025, providing much more
      chances for hands-οn math expedition.

      Singapore’ѕ ᴡorld-renowned math curriculum
      emphasizes conceptual understanding ⲟver simple computation, makіng math tuition vital
      fоr trainees to grasp deep ideas аnd stand oᥙt іn national examinations liқe PSLE and O-Levels.

      primary tuition іs essential foг PSLE aѕ it рrovides remedial
      support f᧐r subjects like еntire numberѕ and measurements, ensuring no fundameental weak рoints continue.

      Presenting heuristic methods еarly in secondary tuition prepares pupils fⲟr thе non-routine problems
      that commonly appedar in Ο Level analyses.

      Attendeing tο specific learning styles, math tuition еnsures junior college trainees understand topics ɑt tһeir ѵery oԝn speed
      for Α Level success.

      OMT’s custom-madе program uniquely supports the MOE curriculum
      ƅy highlighting mistake analysis аnd correction aρproaches to minimize blunders in analyses.

      OMT’ѕ online community ⲟffers support leh,
      ѡһere уou can ɑsk questions аnd enhance
      your understanding foг far ƅetter grades.

      Wіth progressing MOE standards, math tuition maintains Singapore pupils
      upgraded ߋn curriculum adjustments fߋr test preparedness.

      Here іs my blog post primary math tuition in singapore

    44. аттестат за 11 класс купить пермь [url=arus-diplom24.ru]аттестат за 11 класс купить пермь[/url] .

      Diplomi_assa

      30 Aug 25 at 8:04 am

    45. DanielVeiff

      30 Aug 25 at 8:05 am

    46. Планируете ремонт https://remontkomand.kz в Алматы и боитесь скрытых платежей? Опубликовали полный и честный прайс-лист! Узнайте точные расценки на все виды работ — от демонтажа до чистовой отделки. Посчитайте стоимость своего ремонта заранее и убедитесь в нашей прозрачности. Никаких «сюрпризов» в итоговой смете!

      remontkomand-460

      30 Aug 25 at 8:10 am

    47. Have you ever considered about adding a little bit more than just your
      articles? I mean, what you say is fundamental and everything.
      But imagine if you added some great graphics or video
      clips to give your posts more, “pop”! Your content is excellent but with pics and
      clips, this blog could definitely be one of the
      very best in its field. Very good blog!

      AC installation

      30 Aug 25 at 8:11 am

    48. аттестат за 11 классов купить в алматы [url=http://arus-diplom24.ru]аттестат за 11 классов купить в алматы[/url] .

      Diplomi_fjsa

      30 Aug 25 at 8:22 am

    49. DanielVeiff

      30 Aug 25 at 8:27 am

    Leave a Reply