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!
Купить диплом техникума в Хмельницкий [url=www.educ-ua7.ru]www.educ-ua7.ru[/url] .
Diplomi_dmea
5 Oct 25 at 2:03 am
где купить дипломы медсестры [url=www.frei-diplom14.ru/]где купить дипломы медсестры[/url] .
Diplomi_deoi
5 Oct 25 at 2:03 am
купить диплом в тольятти [url=www.rudik-diplom8.ru]купить диплом в тольятти[/url] .
Diplomi_vhMt
5 Oct 25 at 2:03 am
купить диплом [url=https://rudik-diplom2.ru]купить диплом[/url] .
Diplomi_ympi
5 Oct 25 at 2:04 am
The trial of Bryan Kohberger – the man who brutally murdered four University of Idaho students inside their off-campus home – ended in July before it ever truly began when he accepted a plea deal that saw him sentenced to four consecutive life terms in prison without the possibility of an appeal or parole.
Kohberger sat impassively throughout the hearing as the loved ones of each of the four students whose lives he so callously ended repeatedly asked him the same question: Why?
[url=http://trip-skan45.cc]tripscan top[/url]
And when he was finally given the opportunity to answer their questions, he said, “I respectfully decline.”
That decision further fueled the mystery around his motive for murdering Xana Kernodle, Madison Mogen, Ethan Chapin and Kaylee Goncalves.
“There’s no reason for these crimes that could approach anything resembling rationality,” Idaho District Judge Steven Hippler said during Kohberger’s sentencing. “The more we try to extract a reason, the more power and control we give to him.”
But, he added, investigators and researchers may wish to study his actions – if only to learn how to prevent similar crimes from occurring in the future.
http://trip-skan45.cc
трипскан вход
Indeed, academics and former FBI profilers told CNN the challenge of unravelling the criminal mind of a man like Bryan Kohberger is enticing. And while his trial may be over, in many ways, the story of what can be learned from his crimes may have only just begun.
“We want to squeeze any silver lining that we can out of these tragedies,” said Molly Amman, a retired profiler who spent years leading the FBI’s Behavioral Threat Assessment Center.
“The silver lining is anything we can use to prevent another crime. It starts with learning absolutely, positively everything about the person and the crime that we possibly can.”
CNN
Only Kohberger knows
Even seasoned police officers who arrived at 1122 King Road on November 13, 2022, struggled to process the brutality of the crime scene.
All four victims had been ruthlessly stabbed to death before the attacker vanished through the kitchen’s sliding glass door and into the night.
“The female lying on the left half of the bed … was unrecognizable,” one officer would later write of the attack that killed Kaylee Goncalves. “I was unable to comprehend exactly what I was looking at while trying to discern the nature of the injuries.”
Initial interviews with the two surviving housemates gave investigators a loose timeline and a general description of the killer – an athletic, White male who wore a mask that covered most of his face – but little else.
Police later found a Ka-Bar knife sheath next to Madison’s body that would prove to be critical in capturing her killer.
One of the surviving housemates told police about a month before the attacks, Kaylee saw “a dark figure staring at her from the tree line when she took her dog Murphy out to pee.”
“There has been lighthearted talk and jokes made about a stalker in the past,” the officer noted. “All the girls were slightly nervous about it being a fact, though.”
But after years of investigating the murders, detectives told CNN they were never able to establish a connection between Kohberger and any of the victims, or a motive.
Kohberger is far from the first killer to deny families and survivors the catharsis that comes with confessing, in detail, to his crimes. But that, former FBI profilers tell CNN, is part of what makes the prospect of studying him infuriating and intriguing.
JasonHoG
5 Oct 25 at 2:11 am
J’apprecie enormement Azur Casino, il offre une sensation de casino unique. Le catalogue est vaste et diversifie, incluant des slots dynamiques. Le service d’assistance est de premier ordre, offrant des reponses claires et rapides. Les transactions sont parfaitement protegees, cependant davantage de recompenses seraient bienvenues. Globalement, Azur Casino vaut vraiment le detour pour les joueurs passionnes ! De plus le site est concu avec soin, ajoutant une touche de raffinement.
centre azur geant casino|
Mirinchik6zef
5 Oct 25 at 2:11 am
Приобрести MEF GASH SHIHSKI ALFA – ОТЗЫВЫ, ГАРАНТРР, КАЧЕСТВО
RodneyDof
5 Oct 25 at 2:11 am
https://www.wildberries.ru/catalog/466665547/detail.aspx
DavidCes
5 Oct 25 at 2:13 am
купить диплом о среднем специальном образовании [url=http://educ-ua7.ru/]http://educ-ua7.ru/[/url] .
Diplomi_zkea
5 Oct 25 at 2:13 am
It’s amazing designed for me to have a web page, which is valuable in support of my experience.
thanks admin
quite a bit
5 Oct 25 at 2:13 am
купить диплом математика [url=http://www.rudik-diplom2.ru]купить диплом математика[/url] .
Diplomi_ivpi
5 Oct 25 at 2:14 am
купить диплом парикмахера [url=https://www.rudik-diplom8.ru]купить диплом парикмахера[/url] .
Diplomi_djMt
5 Oct 25 at 2:14 am
куплю диплом младшей медсестры [url=frei-diplom14.ru]frei-diplom14.ru[/url] .
Diplomi_cnoi
5 Oct 25 at 2:15 am
Just want to say your article is as astounding. The clearness for your put up is just nice and i could suppose you are an expert on this subject.
Fine with your permission let me to snatch your RSS feed to stay up to
date with coming near near post. Thanks one million and please
carry on the enjoyable work.
Net Rowdex
5 Oct 25 at 2:15 am
Alas, calm pom рi ⲣi hor, ցood primary teaches cooking, igniting culinary entrepreneurship
jobs.
Listen, folks, ⅾo not say bo jio hor, famous schools
emphasize օn understanding, for personnel ߋr guidance jobs.
Oh no, primary mathematics instructs real-ᴡorld applications
including budgeting, ѕo mɑke surе your kid ɡets that
right fгom yoսng age.
Listen up, composed pom ρi pі, math proves ᧐ne fгom the leading
topics аt primary school,establishing foundation fоr A-Level
hіgher calculations.
Alas, primary arithmetic teaches everyday implementations
ⅼike money management, thus ensure уoսr kid grasps it correctly starting ʏoung.
Listen սp, Singapore moms аnd dads, mathematics proves perhaps the extremely essential primary discipline,
fostering imagination fօr challenge-tackling tо creative jobs.
Eh eh, composed pom рi ⲣi, math proves ߋne from the leading
disciplines аt primary school, establishing foundation іn A-Level һigher calculations.
Townsville Primary School promotes а lively environment supporting holistic development.
Devoted educators inspire уoung minds to attain.
Mee Toh School ρrovides Buddhist education stabilizing mind ɑnd spirit.
Tһe school promotes cultural awareness ɑnd learning.
It’s grеat for values-centered bilingual programs.
Ꮋere іs my webpage :: jackie math tuition
jackie math tuition
5 Oct 25 at 2:15 am
https://www.imdb.com/list/ls4102294250/
Dwightedumb
5 Oct 25 at 2:16 am
303vip.info – I stumbled upon this site, looks like there’s some fresh content here.
Damien Pontoriero
5 Oct 25 at 2:16 am
купить диплом тренера [url=http://rudik-diplom3.ru]купить диплом тренера[/url] .
Diplomi_wrei
5 Oct 25 at 2:17 am
I’m not sure exactly why but this website is loading incredibly slow
for me. Is anyone else having this problem or is it a problem on my end?
I’ll check back later and see if the problem still exists.
turkey visa for australian
5 Oct 25 at 2:18 am
Складчик удивил меня удобством и ассортиментом. Купил несколько складчин по дизайну и маркетингу. Материалы пришли быстро и полные. Очень удобно, что есть рейтинги и отзывы. Экономия до 99%. Сервис честный и безопасный. Теперь пользуюсь регулярно: https://v27.skladchik.org/
BryanTop
5 Oct 25 at 2:18 am
купить диплом с занесением в реестры [url=http://frei-diplom4.ru]купить диплом с занесением в реестры[/url] .
Diplomi_owOl
5 Oct 25 at 2:20 am
Thanks for sharing your info. I really appreciate your efforts and I will be waiting for your next post thanks once again.
Opulatrix
5 Oct 25 at 2:21 am
Propecia 1mg price [url=https://regrowrxonline.com/#]Propecia prescription[/url] Best place to buy propecia
Davidbax
5 Oct 25 at 2:23 am
พนันออนไลน์ AChi365 เว็บพนันที่ดีที่สุด ในยุคดิจิทัล
พนันออนไลน์
5 Oct 25 at 2:24 am
кухня на заказ спб от производителя недорого [url=https://kuhni-spb-1.ru/]kuhni-spb-1.ru[/url] .
kyhni spb_elmi
5 Oct 25 at 2:25 am
Gold Star
Michaelrow
5 Oct 25 at 2:25 am
What’s up it’s me, I am also visiting this web page regularly, this web page is genuinely
fastidious and the users are actually sharing pleasant thoughts.
신용카드현금화
5 Oct 25 at 2:27 am
Hmm it looks like your website ate my first comment (it was super long) so
I guess I’ll just sum it up what I submitted and say, I’m thoroughly enjoying your blog.
I as well am an aspiring blog writer but I’m still new to everything.
Do you have any recommendations for novice blog writers?
I’d certainly appreciate it.
Fundspire Axivon
5 Oct 25 at 2:27 am
Hi there would you mind letting me know which hosting company you’re
working with? I’ve loaded your blog in 3 completely different internet browsers and I must say
this blog loads a lot faster then most. Can you suggest a good hosting provider at
a reasonable price? Kudos, I appreciate it!
игровые автоматы с фриспинами за регистрацию
5 Oct 25 at 2:29 am
купить проведенный диплом [url=https://www.frei-diplom4.ru]купить проведенный диплом[/url] .
Diplomi_fqOl
5 Oct 25 at 2:30 am
Estou completamente viciado em DazardBet Casino, e um cassino online que e pura adrenalina. O catalogo de jogos do cassino e colossal, com jogos de cassino perfeitos para criptomoedas. Os agentes do cassino sao rapidos como um raio, com uma ajuda que e um show a parte. Os pagamentos do cassino sao suaves e seguros, mas mais bonus regulares no cassino seria demais. No geral, DazardBet Casino oferece uma experiencia de cassino inesquecivel para quem curte apostar com estilo no cassino! Vale dizer tambem a plataforma do cassino arrasa com um visual eletrizante, da um toque de classe ao cassino.
dazardbet sovellus|
sparklemoth8zef
5 Oct 25 at 2:30 am
Я считаю, что Роман Василенко — это человек, которому можно доверять. Его открытость и честность выделяют его среди других. Он всегда остаётся простым и настоящим. Для меня это вызывает уважение. Его имя ассоциируется с силой и добротой.
LouisNug
5 Oct 25 at 2:32 am
прямые кухни на заказ от производителя [url=http://kuhni-spb-1.ru/]http://kuhni-spb-1.ru/[/url] .
kyhni spb_rnmi
5 Oct 25 at 2:32 am
купить диплом железнодорожника [url=http://www.rudik-diplom4.ru]купить диплом железнодорожника[/url] .
Diplomi_gpOr
5 Oct 25 at 2:32 am
Длительный запой представляет собой крайне опасное состояние, способное нанести непоправимый вред организму. При отсутствии своевременного вмешательства алкогольная интоксикация может привести к серьезным осложнениям, таким как нарушение работы сердца, печени, почек и нервной системы, а также развитию алкогольного психоза. В таких ситуациях экстренная медицинская помощь является залогом спасения жизни и предотвращения необратимых последствий. Клиника «ЗдоровьеНорм» предлагает круглосуточный выезд специалистов для вывода из запоя на дому в Краснодаре и по всему Краснодарскому краю. Наши врачи работают 24 часа в сутки, обеспечивая полный комплекс процедур по детоксикации, снятию абстинентного синдрома и восстановлению организма, при этом гарантируя полную анонимность и индивидуальный подход к каждому пациенту.
Подробнее – [url=https://narcolog-na-dom-krasnodar0.ru/]нарколог на дом вывод из запоя краснодар[/url]
DamonBot
5 Oct 25 at 2:33 am
In Singapore’ѕ competitive academic landscape, secondary school
math tuition plays аn essential role in helping ʏօur post-PSLE child grasp
abstract concepts еarly in Secondary 1.
Eh lor, Singapore students t᧐p thе math charts
internationally, steady!
Ϝor moms аnd dads, progress fuel ᴡith Singapore math tuition’ѕ passion. Secondary math tuition enthusiasm
sparks. Ƭhrough secondary 1 math tuition, clearness algebraic.
Іn Singapore’ѕ competigive academic landscape, secondary 2 math tuition supplies essential
support fⲟr students taкing on advanced topics ⅼike quadratic formulas and trigonometry.
Ƭhis specialized secondary 2 math tuition helps bridge gaps іn comprehending that mɑy arise fr᧐m larger class
sizes in schools. Βу concentrating ߋn tailored guidance, secondary 2 math
tuition builds ѕеlf-confidence and improves problem-solving skills.
Moms аnd dads often discover that registering іn secondary
2 math tuition resuⅼts inn ƅetter exam performance ɑnd a stronger structure f᧐r
upper secondary levels.
Secondary 3 math exams serve аs foundations,preceding Օ-Levels, demanding higһ efficiency.
Excelling facilitates equity іn opportunities. They
construct community strength.
Singapore’ѕ system accommodates secondary 4 exams respectfully.
Secondary 4 math tuition rhythms fit. Ꭲhiѕ consistency improves O-Level.
Secondary 4 math tuition accommodates.
Βeyond school preparation, math serves ɑs an essential talent іn exploding ᎪӀ, critical fоr robotics іn manufacturing.
Foster a deep love fοr math and apply itѕ princioles in real-life daily tߋ excel.
T᧐ boost confidence, practicing ⲣast math exam papers from different schools іn Singapore simulates success scenarios.
Students іn Singapore achieve ƅetter grades ѡith e-learning that
includes asteroid mining probability scenarios.
Aiyah аh, chill lah, secondary school ɡot library resources, support
ԝithout extra pressure.
OMT’s supportive responses loopholes encourage growth attitude, assisting students love math аnd really feel inspired for examinations.
Prepare fοr success in upcoming tests wіtһ OMT Math Tuition’ѕ exclusive curriculum, developed t᧐ foster critical thinking аnd
confidence in eᴠery student.
Considered that mathematics plays а critical role
in Singapore’s financial development аnd development,
purchasing specialized math tuition gears սp trainees ѡith the рroblem-solving
skills neеded tо grow in a competitive landscape.
primary school tuition іs neceѕsary foг constructing durability versus PSLE’ѕ difficult concerns, such аs those
on probability and easy statistics.
Secondary math tuition ɡets rid of tһe constraints օf huge class sizes, offering concentrated іnterest tһat boosts understanding foг O Level preparation.
Ԍetting ready for thе changability оf A Level concerns, tuition develops adaptive рroblem-solving
strategies fоr real-time exam circumstances.
Ꭲhe individuality of OMT exists іn its tailored curriculum tһat
straightens effortlessly ѡith MOE criteria ᴡhile introducing innovative analytic
techniques not ᥙsually emphasized in class.
Individualized development monitoring iin OMT’ѕ ѕystem reveals your vulnerable points sіa,
permitting targeted practice fοr grade improvement.
Ᏼy concentrating on mistake analysis, math
tuition stops repeating mistakes tһat cаn cost valuable marks іn Singapore
tests.
Taқe a lo᧐k at mү web blog; secondary maths exam papers
secondary maths exam papers
5 Oct 25 at 2:33 am
Simply want to say your article is as amazing.
The clarity in your post is simply nice and i can assume you are an expert on this subject.
Well with your permission allow me to grab your feed to keep up to
date with forthcoming post. Thanks a million and please continue the gratifying work.
Luvox Bit
5 Oct 25 at 2:34 am
как купить диплом с реестром [url=www.frei-diplom4.ru]как купить диплом с реестром[/url] .
Diplomi_rzOl
5 Oct 25 at 2:35 am
Крайне советую https://kagayaki-tosou.com/%e8%bc%9d%e5%a1%97%e8%a3%85%e3%81%ae%e3%81%8a%e4%bb%95%e4%ba%8b/photo01/
PedroMop
5 Oct 25 at 2:37 am
Приобрести MEF GASH SHIHSKI ALFA – ОТЗЫВЫ, ГАРАНТРР, КАЧЕСТВО
RodneyDof
5 Oct 25 at 2:37 am
купить проведенный диплом вуза [url=https://frei-diplom1.ru/]https://frei-diplom1.ru/[/url] .
Diplomi_ywOi
5 Oct 25 at 2:38 am
https://ozon.ru/t/csgBrx8
DavidCes
5 Oct 25 at 2:39 am
купить диплом в уфе [url=https://www.rudik-diplom4.ru]купить диплом в уфе[/url] .
Diplomi_szOr
5 Oct 25 at 2:39 am
москва купить диплом о высшем образовании с занесением в реестр [url=https://www.frei-diplom6.ru]москва купить диплом о высшем образовании с занесением в реестр[/url] .
Diplomi_ywOl
5 Oct 25 at 2:39 am
J’aime enormement le casino TonyBet, on dirait un univers de jeu unique. Les jeux sont varies, avec des machines a sous modernes. Le personnel est tres competent, tres professionnel. On recupere ses gains vite, cependant plus de tours gratuits seraient bien. Pour tout dire, TonyBet ne decoit pas pour ceux qui aiment parier ! De plus, l’interface est fluide, renforcant le plaisir de jouer.
registrarse en tonybet|
Abobus4zef
5 Oct 25 at 2:40 am
купить диплом в находке [url=http://rudik-diplom3.ru]купить диплом в находке[/url] .
Diplomi_bnei
5 Oct 25 at 2:43 am
Этот набор принципов снижает тревожность и даёт ощущение управляемости процесса уже с первого контакта.
Детальнее – https://narkologicheskaya-klinika-mytishchi0.ru/chastnaya-narkologicheskaya-klinika-v-mytishchah/
PhillipSok
5 Oct 25 at 2:43 am
It’s in point of fact a nice and useful piece of info.
I’m happy that you just shared this helpful info with us.
Please stay us up to date like this. Thanks for sharing.
เช่ารถรายเดือน
5 Oct 25 at 2:45 am
купить диплом в калининграде [url=https://www.rudik-diplom4.ru]купить диплом в калининграде[/url] .
Diplomi_hvOr
5 Oct 25 at 2:45 am
Центр медицинского лицензирования Журавлев Консалтинг Групп предоставил полный спектр услуг, включая подготовку документов, взаимодействие с контролирующими органами и консультации по всем вопросам: https://licenz.pro/
Stevenzof
5 Oct 25 at 2:46 am