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!
Astronomers first discovered Cha 1107-7626 in 2008, and since then, they have observed it with different telescopes to learn more about how the infant planet evolves, as well as to study its surroundings.
[url=https://tlk-triga.ru/tral/]аренда трала стоимость[/url]
The research team observed the planet with Webb in 2024, making a clear detection of the surrounding disk. Next, the researchers studied it using the X-shooter spectrograph on the Very Large Telescope, which can capture different wavelengths of light emitted by an object ranging from ultraviolet to near-infrared.
The observations detected a puzzling event as the planet transitioned from a steady accretion rate in April and May to a burst of growth between June and August.
https://tlk-triga.ru/gruzoperevozki_po_moskve/
рассчитать стоимость перевозки
“I fully expected that this is a short-term event, because those are much more common,” Scholz said. “When the burst kept going through July and August, I was absolutely stunned.”
Follow-up observations made using the Webb telescope also showed that the chemistry of the disk had changed. Water vapor, present during the growth spurt, wasn’t in the disk before. Webb is the only telescope capable of capturing such detailed changes in the environment for such a faint object, Scholz said. Prior to this research, astronomers had only ever seen the chemistry of a disk change around a star, but not around a planet.
Comparing observations from before and during the event showed that magnetic activity seems to be the main driver behind how much gas and dust is falling on the planet — a phenomenon typically associated with stars as they grow.
But the new observations suggest that objects with much less mass than stars — the rogue world is less than 1% the mass of our sun — can have strong magnetic fields capable of driving the growth of the object, according to the study authors.
An infrared image taken with the Visible and Infrared Telescope for Astronomy shows Cha 1107-7626, a dot located in the center.
An infrared image taken with the Visible and Infrared Telescope for Astronomy shows Cha 1107-7626, a dot located in the center. ESO/Meingast et al.
A planet that acts like a star
The origin of rogue planets remains murky. It’s possible they are planets that are kicked out of orbit around stars due to the gravitational influence of other objects. Or perhaps they are the lowest-mass objects that happen to form like stars. For Cha 1107-7626, astronomers said they think it’s the latter.
“This object most likely formed in a way similar to stars — from the collapse and fragmentation of a molecular cloud,” Scholz said.
A molecular cloud is a massive, cold cloud of gas and dust that can stretch for hundreds of light-years, according to NASA.
“We’re struck by quite how much the infancy of free-floating planetary-mass objects resembles that of stars like the Sun,” Jayawardhana said in a statement. “Our new findings underscore that similarity, and imply that some objects comparable to giant planets form the way stars do, from contracting clouds of gas and dust accompanied by disks of their own, and they go through growth episodes just like newborn stars.”
JustinRhila
15 Oct 25 at 2:58 pm
1win aviator oyunu [url=https://www.1win5004.com]https://www.1win5004.com[/url]
1win_ptoi
15 Oct 25 at 2:58 pm
диплом техникума ссср купить [url=www.frei-diplom9.ru/]диплом техникума ссср купить[/url] .
Diplomi_kxea
15 Oct 25 at 2:58 pm
купить диплом в костроме [url=rudik-diplom3.ru]rudik-diplom3.ru[/url] .
Diplomi_cyei
15 Oct 25 at 3:00 pm
займы все [url=www.zaimy-26.ru]www.zaimy-26.ru[/url] .
zaimi_xlSt
15 Oct 25 at 3:00 pm
mexico pharmacy: MedicoSur – mexican pharmacy
AndrewPal
15 Oct 25 at 3:01 pm
I am extremely inspired together with your writing skills as well as with
the layout for your blog. Is that this a paid subject or did you customize it
your self? Anyway keep up the excellent high quality writing, it’s uncommon to see
a great blog like this one these days..
https://566-app.com/
15 Oct 25 at 3:01 pm
купить диплом техникума до 1996 года [url=http://frei-diplom8.ru]купить диплом техникума до 1996 года[/url] .
Diplomi_upsr
15 Oct 25 at 3:02 pm
I’m curious to find out what blog system you’re working with?
I’m experiencing some small security problems with my latest site
and I’d like to find something more secure.
Do you have any recommendations?
here
15 Oct 25 at 3:03 pm
как купить диплом техникума ссср в [url=http://www.frei-diplom12.ru]как купить диплом техникума ссср в[/url] .
Diplomi_mkPt
15 Oct 25 at 3:04 pm
I am sure you are too handsome and generous to bearmalice–I will serve you on my bended knees,エロ 人形by night and by day,
等身大 ラブドール
15 Oct 25 at 3:05 pm
Spinrise
FrankAmoum
15 Oct 25 at 3:09 pm
Astronomers first discovered Cha 1107-7626 in 2008, and since then, they have observed it with different telescopes to learn more about how the infant planet evolves, as well as to study its surroundings.
[url=https://tlk-triga.ru/tral/]трал фото машины[/url]
The research team observed the planet with Webb in 2024, making a clear detection of the surrounding disk. Next, the researchers studied it using the X-shooter spectrograph on the Very Large Telescope, which can capture different wavelengths of light emitted by an object ranging from ultraviolet to near-infrared.
The observations detected a puzzling event as the planet transitioned from a steady accretion rate in April and May to a burst of growth between June and August.
https://tlk-triga.ru/negabarit/
сопровождение негабаритных грузов
“I fully expected that this is a short-term event, because those are much more common,” Scholz said. “When the burst kept going through July and August, I was absolutely stunned.”
Follow-up observations made using the Webb telescope also showed that the chemistry of the disk had changed. Water vapor, present during the growth spurt, wasn’t in the disk before. Webb is the only telescope capable of capturing such detailed changes in the environment for such a faint object, Scholz said. Prior to this research, astronomers had only ever seen the chemistry of a disk change around a star, but not around a planet.
Comparing observations from before and during the event showed that magnetic activity seems to be the main driver behind how much gas and dust is falling on the planet — a phenomenon typically associated with stars as they grow.
But the new observations suggest that objects with much less mass than stars — the rogue world is less than 1% the mass of our sun — can have strong magnetic fields capable of driving the growth of the object, according to the study authors.
An infrared image taken with the Visible and Infrared Telescope for Astronomy shows Cha 1107-7626, a dot located in the center.
An infrared image taken with the Visible and Infrared Telescope for Astronomy shows Cha 1107-7626, a dot located in the center. ESO/Meingast et al.
A planet that acts like a star
The origin of rogue planets remains murky. It’s possible they are planets that are kicked out of orbit around stars due to the gravitational influence of other objects. Or perhaps they are the lowest-mass objects that happen to form like stars. For Cha 1107-7626, astronomers said they think it’s the latter.
“This object most likely formed in a way similar to stars — from the collapse and fragmentation of a molecular cloud,” Scholz said.
A molecular cloud is a massive, cold cloud of gas and dust that can stretch for hundreds of light-years, according to NASA.
“We’re struck by quite how much the infancy of free-floating planetary-mass objects resembles that of stars like the Sun,” Jayawardhana said in a statement. “Our new findings underscore that similarity, and imply that some objects comparable to giant planets form the way stars do, from contracting clouds of gas and dust accompanied by disks of their own, and they go through growth episodes just like newborn stars.”
JustinRhila
15 Oct 25 at 3:11 pm
It’s actually a nice and helpful piece of info.
I am glad that you shared this useful info with us. Please
keep us up to date like this. Thank you for sharing.
tits
15 Oct 25 at 3:11 pm
https://telegra.ph/Kupit-blokirator-dronov-garpiya-pro-120-w-10-12
FrankieBat
15 Oct 25 at 3:14 pm
You actually make it seem so easy along with your presentation however I find this topic to be really
something that I feel I might by no means understand.
It sort of feels too complicated and very large for me.
I’m having a look ahead on your next publish, I will try to get the
hang of it!
해운대출장안마
15 Oct 25 at 3:15 pm
how to start crypto trading
Williameleri
15 Oct 25 at 3:15 pm
Hurrah! After all I got a website from where I be able to truly take useful information concerning my study
and knowledge.
spinfest no deposit bonus
15 Oct 25 at 3:16 pm
купить диплом медсестры [url=http://frei-diplom13.ru]купить диплом медсестры[/url] .
Diplomi_bdkt
15 Oct 25 at 3:17 pm
Приобрести диплом любого университета мы поможем. Купить диплом механика – [url=http://diplomybox.com/diplom-mekhanika/]diplomybox.com/diplom-mekhanika[/url]
Cazrjxm
15 Oct 25 at 3:20 pm
купить диплом техникума ссср в ангарске [url=http://frei-diplom9.ru/]купить диплом техникума ссср в ангарске[/url] .
Diplomi_jhea
15 Oct 25 at 3:20 pm
OMT’s blend of online аnd on-site alternatives supplies adaptability,
mɑking mathematics easily accessible and charming, wһile inspiring Singapore trainees fⲟr test success.
Join ⲟur ѕmall-group on-site classes іn Singapore for individualized assistance іn а nurturing environment tһat develops strong
foundational math abilities.
Ꮤith math incorporated seamlessly іnto Singapore’s classroom settings t᧐ benefit both instructors ɑnd students, devoted math tuition enhances tһese gains bʏ providing tailored assistance fⲟr
continual achievement.
primary school math tuition іs crucial for PSLE preparation ɑs it assists trainees
master tһе fundamental ideas liқe portions and decimals, wһich are heavily tested іn the examination.
Provided the hiɡh stakes of O Levels
for hіgh school progression іn Singapore, math tuition optimizes chances f᧐r leading grades and desired positionings.
Tuition integrates pure аnd useԁ mathematics flawlessly, preparing pupils
fоr tһе interdisciplinary nature ᧐f A Level troubles.
The distinctiveness of OMT ϲomes fгom its syllabus that matches MOE’ѕ witһ interdisciplinary connections, connecting mathematics tο scientific rеsearch аnd everyday analytic.
OMT’ѕ online tuition is kiasu-proof leh, offering you
that ɑdded siɗe to exceed in O-Level mathematics examinations.
Ιn Singapore, wһere math proficiency ᧐pens ᥙp doors to STEM professions, tuition іs іmportant fоr solid
test structures.
Ηere іs my webpage :: Tuition Online Maths
Tuition Online Maths
15 Oct 25 at 3:21 pm
Adoro o clima explosivo de JabiBet Casino, parece uma correnteza de diversao. Os titulos do cassino sao um espetaculo a parte, incluindo jogos de mesa de cassino cheios de vibe. A equipe do cassino entrega um atendimento que e uma perola, dando solucoes na hora e com precisao. O processo do cassino e limpo e sem turbulencia, mas mais giros gratis no cassino seria uma loucura. Resumindo, JabiBet Casino e o point perfeito pros fas de cassino para os aventureiros do cassino! Alem disso o site do cassino e uma obra-prima de estilo, aumenta a imersao no cassino como uma onda gigante.
jabibet bangladesh|
zippyoctopus4zef
15 Oct 25 at 3:26 pm
список займов онлайн [url=https://zaimy-26.ru]список займов онлайн[/url] .
zaimi_xgSt
15 Oct 25 at 3:27 pm
you are in reality a excellent webmaster. The web site loading speed is incredible.
It seems that you’re doing any distinctive trick.
Moreover, The contents are masterpiece. you have performed a
fantastic task on this topic!
index
15 Oct 25 at 3:29 pm
потолочкин [url=www.natyazhnye-potolki-nizhniy-novgorod-1.ru/]потолочкин[/url] .
natyajnie potolki nijnii novgorod_xnma
15 Oct 25 at 3:30 pm
Ich finde absolut wild Lowen Play Casino, es ist ein Online-Casino, das wie ein Lowe brullt. Der Katalog des Casinos ist ein Dschungel voller Nervenkitzel, mit einzigartigen Casino-Slotmaschinen. Der Casino-Service ist zuverlassig und machtig, mit Hilfe, die wie ein Brullen wirkt. Casino-Gewinne kommen wie ein Blitz, trotzdem mehr regelma?ige Casino-Boni waren ein Volltreffer. Insgesamt ist Lowen Play Casino ein Muss fur Casino-Fans fur Fans moderner Casino-Slots! Extra die Casino-Seite ist ein grafisches Meisterwerk, Lust macht, immer wieder ins Casino zuruckzukehren.
lГ¶wen play bonus code bestandskunden|
zappysquirrel3zef
15 Oct 25 at 3:30 pm
Spin Rise
FrankAmoum
15 Oct 25 at 3:30 pm
заказать кухню по индивидуальным размерам в спб [url=https://kuhni-spb-2.ru]https://kuhni-spb-2.ru[/url] .
kyhni spb_mlmn
15 Oct 25 at 3:32 pm
можно ли купить диплом медсестры [url=http://frei-diplom13.ru/]можно ли купить диплом медсестры[/url] .
Diplomi_edkt
15 Oct 25 at 3:33 pm
купить диплом с занесением в реестр цена [url=frei-diplom6.ru]купить диплом с занесением в реестр цена[/url] .
Diplomi_bdOl
15 Oct 25 at 3:33 pm
Sou louco pelo role de PagolBet Casino, tem uma vibe de jogo que e pura eletricidade. A gama do cassino e simplesmente uma faisca, oferecendo sessoes de cassino ao vivo que sao um relampago. O atendimento ao cliente do cassino e uma corrente de eficiencia, respondendo mais rapido que um raio. Os ganhos do cassino chegam voando como um meteoro, de vez em quando mais recompensas no cassino seriam um diferencial brabo. No geral, PagolBet Casino vale demais explorar esse cassino para os amantes de cassinos online! Vale falar tambem o design do cassino e uma explosao visual vibrante, aumenta a imersao no cassino a mil.
pagolbet reclame aqui|
zanyflamingo2zef
15 Oct 25 at 3:34 pm
купить диплом о окончании техникума официально [url=www.frei-diplom12.ru/]купить диплом о окончании техникума официально[/url] .
Diplomi_hePt
15 Oct 25 at 3:34 pm
натяжные потолки в нижнем новгороде [url=www.stretch-ceilings-nizhniy-novgorod.ru]www.stretch-ceilings-nizhniy-novgorod.ru[/url] .
natyajnie potolki nijnii novgorod_nqPl
15 Oct 25 at 3:36 pm
ラブドール avforwhom she had been sent put in his appearance.the child was notmuch the worse,
ラブドール セックス
15 Oct 25 at 3:37 pm
crypto market analysis
Williameleri
15 Oct 25 at 3:37 pm
1win pul çıxarma [url=http://1win5004.com/]1win pul çıxarma[/url]
1win_avoi
15 Oct 25 at 3:37 pm
Ich bin verblufft von NV Casino, es liefert einen einzigartigen Kick. Das Angebot an Spielen ist phanomenal, mit immersiven Tischspielen. Die Mitarbeiter reagieren blitzschnell, immer bereit zu helfen. Die Transaktionen sind zuverlassig, obwohl regelma?igere Promos waren super. Zum Abschluss, NV Casino ist definitiv empfehlenswert fur Fans von Online-Wetten ! Au?erdem die Plattform ist optisch ein Highlight, macht die Erfahrung flussiger.
playnvcasino.de|
GigabitE6zef
15 Oct 25 at 3:41 pm
عزیزان، پلتفرمهای شرطبندی تهدیدکننده به علاوه فریبنده
هستند. دوست من ناشی از کنجکاوی فعال
کردم و در مدت چندین ماه همه پولام را از دست
دادم. نه فقط پول، بلکه دوستان مرا از بین گردید.
وابستگی در اینسایتها مانند
زنجیری است که شما را در نابودی میکشاند.
اصلاً شروع نخواهید!
باخت پول قمار
15 Oct 25 at 3:41 pm
and going round the levee,spoke to every individual,オナホ フィギュア
等身大 ラブドール
15 Oct 25 at 3:41 pm
кто нибудь работает медсестрой по купленному диплому [url=frei-diplom13.ru]frei-diplom13.ru[/url] .
Diplomi_vukt
15 Oct 25 at 3:41 pm
если купить диплом техникума [url=https://www.frei-diplom12.ru]если купить диплом техникума[/url] .
Diplomi_nkPt
15 Oct 25 at 3:43 pm
buy cialis online: discreet ED pills delivery in the US – TadaLife Pharmacy
Andresstold
15 Oct 25 at 3:43 pm
He was about to proceed to the first of the graceful tributes he hadprepared in the train,obliviou as he could not see himself,ラブドール リアル
エロ ラブドール
15 Oct 25 at 3:45 pm
https://telegra.ph/Kvadrokopter-fimi-mini-3-kupit-10-12-5
FrankieBat
15 Oct 25 at 3:45 pm
купить диплом техникума стерлитамак [url=https://www.frei-diplom9.ru]купить диплом техникума стерлитамак[/url] .
Diplomi_wlea
15 Oct 25 at 3:45 pm
купить диплом с занесением в реестр краснодар [url=https://frei-diplom6.ru/]https://frei-diplom6.ru/[/url] .
Diplomi_laOl
15 Oct 25 at 3:47 pm
диплом колледжа купить в москве [url=frei-diplom12.ru]frei-diplom12.ru[/url] .
Diplomi_jyPt
15 Oct 25 at 3:48 pm
フィギュア オナホnimble,rich of speech,
ラブドール 無 修正
15 Oct 25 at 3:49 pm
http://medicosur.com/# mexican pharmacy
Hermandug
15 Oct 25 at 3:50 pm