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=http://rudik-diplom2.ru]купить диплом железнодорожника[/url] .
Diplomi_topi
20 Oct 25 at 3:44 pm
top clock radio [url=https://www.alarm-radio-clocks.com]https://www.alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_bgOa
20 Oct 25 at 3:46 pm
Discover aggregated promotions ɑt Kaizenaire.ϲom, Singapore’s top deals website.
Аs ɑ dynamic shopping paradise, Singapore оffers tһе excellent play ground fߋr
citizens wһo adore promotions aand clever deals.
Singaporeans tɑke pleasure іn binge-watching the moѕt current dramatization on streaming platforms tһroughout
stormy ⅾays, and remember tߋ stay updated on Singapore’ѕ most current promotions
аnd shoppling deals.
Olam focuses оn agricultural products аnd food active ingredients,
appreciated Ƅy Singaporeans for ensuring t᧐p quality
supplies in tһeir favored regional cuisines ɑnd items.
Changi Airport providеs first-rate travel centers аnd retail experiences sia,
precious ƅʏ Singaporeans for its performance
ɑnd varied shopping outlets lah.
Tai Sun snacks ᴡith nuts and chips, treasured fоr crunchy,
healthy and balanced attacks іn cupboards.
Singaporeans, remаin ahead mah, check Kaizenaire.сom daily lah.
My blog … Kaizenaire.com business loans
Kaizenaire.com business loans
20 Oct 25 at 3:46 pm
The Minotaurus coin vesting extension is holder gold. ICO’s partnerships brewing success. Casual gaming with crypto? Revolutionary.
minotaurus presale
WilliamPargy
20 Oct 25 at 3:48 pm
best am fm clock radios [url=www.alarm-radio-clocks.com/]www.alarm-radio-clocks.com/[/url] .
Cd Player Radio Alarm Clocks_viOa
20 Oct 25 at 3:48 pm
купить диплом в балашове [url=http://rudik-diplom14.ru]купить диплом в балашове[/url] .
Diplomi_klea
20 Oct 25 at 3:49 pm
одноразовые номера для СМС
Ernestadaky
20 Oct 25 at 3:49 pm
Квартира с отделкой https://новостройкивспб.рф экономия времени и предсказуемый бюджет. Фильтруем по планировкам, материалам, классу дома и акустике. Проверяем стандарт отделки, толщину стяжки, ровность стен, работу дверей/окон, скрытые коммуникации. Приёмка по дефект-листу, штрафы за просрочку.
ShawnTut
20 Oct 25 at 3:50 pm
пин ап отзывы пользователей [url=www.pinup5007.ru]www.pinup5007.ru[/url]
pin_up_uz_cdsr
20 Oct 25 at 3:52 pm
Excited about Minotaurus presale bonuses. $MTAUR’s appreciation eyed. Runner mechanics solid.
mtaur coin
WilliamPargy
20 Oct 25 at 3:57 pm
pin up qanday pul yechiladi [url=http://pinup5007.ru]pin up qanday pul yechiladi[/url]
pin_up_uz_musr
20 Oct 25 at 3:58 pm
This paragraph will assist the internet visitors for setting up new website or even a
blog from start to end.
Bom mìn tự chế
20 Oct 25 at 3:59 pm
clock radio alarm clock cd [url=http://alarm-radio-clocks.com]http://alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_fcOa
20 Oct 25 at 3:59 pm
проект по перепланировке квартиры цена [url=http://proekt-pereplanirovki-kvartiry11.ru]http://proekt-pereplanirovki-kvartiry11.ru[/url] .
proekt pereplanirovki kvartiri_ibot
20 Oct 25 at 4:02 pm
Thanks for sharing your thoughts about Donde los sueños
se convierten en jackpots. Regards
Donde la fortuna sonríe a los valientes
20 Oct 25 at 4:05 pm
пин ап [url=www.pinup5008.ru]www.pinup5008.ru[/url]
pin_up_uz_wnSt
20 Oct 25 at 4:07 pm
best home radio cd player [url=http://www.alarm-radio-clocks.com]http://www.alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_mxOa
20 Oct 25 at 4:07 pm
пин ап центр помощи [url=pinup5008.ru]pinup5008.ru[/url]
pin_up_uz_axSt
20 Oct 25 at 4:10 pm
globaltradingnetwork.cfd – Their API integration simplifies market access for brokers and fintechs.
Leandro Santolucito
20 Oct 25 at 4:11 pm
купить проведенный диплом отзывы [url=http://www.frei-diplom1.ru]http://www.frei-diplom1.ru[/url] .
Diplomi_dyOi
20 Oct 25 at 4:12 pm
pin up jonli yordam [url=pinup5008.ru]pin up jonli yordam[/url]
pin_up_uz_ujSt
20 Oct 25 at 4:16 pm
how can i get generic accutane without prescription
order generic accutane without insurance
20 Oct 25 at 4:17 pm
пин ап техподдержка [url=https://www.pinup5007.ru]пин ап техподдержка[/url]
pin_up_uz_oesr
20 Oct 25 at 4:18 pm
стоимость проекта перепланировки квартиры [url=http://www.proekt-pereplanirovki-kvartiry11.ru]стоимость проекта перепланировки квартиры[/url] .
proekt pereplanirovki kvartiri_glot
20 Oct 25 at 4:19 pm
пин ап новый домен [url=www.pinup5007.ru]www.pinup5007.ru[/url]
pin_up_uz_ujsr
20 Oct 25 at 4:19 pm
Minotaurus token’s audits top-tier. Presale accessible. Power-ups game-changing.
mtaur token
WilliamPargy
20 Oct 25 at 4:22 pm
best cd alarm clock radio [url=http://www.alarm-radio-clocks.com]http://www.alarm-radio-clocks.com[/url] .
Cd Player Radio Alarm Clocks_dfOa
20 Oct 25 at 4:23 pm
Карта — это общий язык для всех участников процесса. Пациент видит смысл каждого шага, родные знают, когда и чему посвящены короткие апдейты, а врач точно понимает, какой параметр корректировать, чтобы не потерять причинно-следственную связь.
Подробнее – [url=https://vyvod-iz-zapoya-murmansk15.ru/]вывод из запоя недорого мурманск[/url]
Francistut
20 Oct 25 at 4:26 pm
I have read so many articles on the topic of
the blogger lovers except this paragraph is truly a nice paragraph,
keep it up.
dewascatter link alternatif
20 Oct 25 at 4:26 pm
https://t.me/reiting_top10_casino/2
EdwardAdete
20 Oct 25 at 4:29 pm
Наша наркологическая клиника предоставляет круглосуточную помощь, использует только сертифицированные медикаменты и строго соблюдает полную конфиденциальность лечения.
Подробнее тут – [url=https://kapelnica-ot-zapoya-sochi0.ru/]капельница от запоя клиника в сочи[/url]
JamessoIsy
20 Oct 25 at 4:29 pm
пин ап скачать на айфон [url=https://www.pinup5007.ru]https://www.pinup5007.ru[/url]
pin_up_uz_yhsr
20 Oct 25 at 4:29 pm
купить диплом машиниста [url=www.rudik-diplom1.ru]купить диплом машиниста[/url] .
Diplomi_lper
20 Oct 25 at 4:29 pm
На сайте Минздрава указаны общие клинические рекомендации по выведению из запоя, включая допустимые дозировки и протоколы лечения.
Узнать больше – [url=https://vyvod-iz-zapoya-v-ryazani12.ru/]vyvod-iz-zapoya-czena rjazan'[/url]
CoreyNuAva
20 Oct 25 at 4:29 pm
the alarm cd [url=http://alarm-radio-clocks.com/]http://alarm-radio-clocks.com/[/url] .
Cd Player Radio Alarm Clocks_ryOa
20 Oct 25 at 4:30 pm
Looking for airport transfer thessaloniki? Transfer SKG transfer-thessaloniki.gr – Professional Airport Transfers & Private Tours. Reliable services from Thessaloniki Airport to all Chalkidiki: Kassandra, Sithonia, Mount Athos gateway towns. Comfort transfers to top resorts like Sani, Ikos Oceania, and Porto Carras. Private transfers, VIP chauffeur service, group transport, hourly hire. Signature excursions to Meteora, Olympus & Dion, Vergina-Pella, Halkidiki highlights, Pozar thermal baths, and the Edessa water cascades. Why choose us: upfront fixed fares from €25, real-time flight tracking, 24/7 service, late?model fleet, multilingual drivers (EN/RU/GR).
habegmus
20 Oct 25 at 4:31 pm
pin up app uz [url=https://pinup5008.ru/]https://pinup5008.ru/[/url]
pin_up_uz_leSt
20 Oct 25 at 4:31 pm
купить диплом техникума дешево [url=https://www.frei-diplom11.ru]купить диплом техникума дешево[/url] .
Diplomi_bdsa
20 Oct 25 at 4:31 pm
OMT’s analysis assessments customize inspiration, helping trainees love tһeir distinct math journey
tօwards test success.
Join օur smaⅼl-group on-site classes in Singapore fߋr individualized guidance in a nurturing environment tһɑt builds strong fundamental mathematics abilities.
Αѕ mathematics underpins Singapore’ѕ reputation f᧐r quality in global stanndards ⅼike PISA, math tuition іѕ key t᧐ unlocking a child’s
prospective and securing scholastic benefits іn this core subject.
Tuition highlights heuristic analytical ɑpproaches,
vital fօr tackling PSLE’ѕ difficult ѡоrd issues that
requir numerous steps.
Introducing heuristic ɑpproaches eawrly іn secondary
tuition prepares trainees fߋr tthe non-routine troubles tһat frequently aρpear in O Level evaluations.
Dealing witһ individual understanding designs,
math tuition mɑkes ⅽertain junior college pupils master topics аt their own pace for
A Level success.
OMT’ѕ exclusive curriculum enhances MOE criteria tһrough a holistic method tһat supports both scholastic abilities ɑnd a passion for mathematics.
Τhе platform’ѕ resources are updated regularly оne, keeping you lined ᥙp
witһ most recent syllabus foг grade increases.
Math tuition debunks sophisticated topics ⅼike calculus f᧐r
A-Level pupils, leading tһe method for university
admissions іn Singapore.
Here is my ⲣage: Kaizenare math tuition
Kaizenare math tuition
20 Oct 25 at 4:33 pm
разработка проекта перепланировки квартиры [url=https://www.proekt-pereplanirovki-kvartiry11.ru]разработка проекта перепланировки квартиры[/url] .
proekt pereplanirovki kvartiri_ufot
20 Oct 25 at 4:33 pm
https://www.band.us/page/99417139/
Anthonycam
20 Oct 25 at 4:37 pm
пин ап безопасно [url=pinup5007.ru]pinup5007.ru[/url]
pin_up_uz_bbsr
20 Oct 25 at 4:40 pm
I enjoy what you guys are usually up too. Such clever work and reporting!
Keep up the fantastic works guys I’ve incorporated you
guys to blogroll.
with no hidden costs or sign-ups.Create a rare Solana address that turns heads with the free Solana vanity address generator. Whether for personal flair or professional branding
20 Oct 25 at 4:41 pm
Ukrainian President Volodymyr Zelensky condemned Russian attacks on the Ukrainian regions of Kharkiv, Zaporizhzhia and Sumy on Monday, saying that the Kremlin intends to “humiliate diplomatic efforts” just hours before European leaders visit the White House.
[url=https://kra42-at.cc]kra38[/url]
“The Russian war machine continues to destroy lives despite everything,” Zelensky said in a statement, hours before he’s due to meet US President Donald Trump in the Oval Office. “That is precisely why we are seeking assistance to put an end to the killings. That is why reliable security guarantees are required. That is why Russia should not be rewarded for its participation in this war.”
[url=https://kra—42-at.ru]kra41 сс[/url]
“Everyone seeks dignified peace and true security,” the Ukrainian president said. “And at this very moment, the Russians are attacking Kharkiv, Zaporizhzhia, the Sumy region, and Odesa, destroying residential buildings and our civilian infrastructure.”
At least seven people were killed in Russia’s attack? on Kharkiv and a further three killed in the ballistic missile strike on the city of Zaporizhzhia, with scores more injured, according to Ukrainian authorities.
“This was a demonstrative and cynical Russian strike,” Zelensky added.
kra39 cc
https://kra-42-cc.com
Edwardjek
20 Oct 25 at 4:41 pm
Ukrainian President Volodymyr Zelensky condemned Russian attacks on the Ukrainian regions of Kharkiv, Zaporizhzhia and Sumy on Monday, saying that the Kremlin intends to “humiliate diplomatic efforts” just hours before European leaders visit the White House.
[url=https://kra–42.cc]kra41 сс[/url]
“The Russian war machine continues to destroy lives despite everything,” Zelensky said in a statement, hours before he’s due to meet US President Donald Trump in the Oval Office. “That is precisely why we are seeking assistance to put an end to the killings. That is why reliable security guarantees are required. That is why Russia should not be rewarded for its participation in this war.”
[url=https://kra41at.com]kra38 сс[/url]
“Everyone seeks dignified peace and true security,” the Ukrainian president said. “And at this very moment, the Russians are attacking Kharkiv, Zaporizhzhia, the Sumy region, and Odesa, destroying residential buildings and our civilian infrastructure.”
[url=https://kra-41cc.com]kra41[/url]
At least seven people were killed in Russia’s attack? on Kharkiv and a further three killed in the ballistic missile strike on the city of Zaporizhzhia, with scores more injured, according to Ukrainian authorities.
[url=https://kra-41–at.ru]kra36 at[/url]
“This was a demonstrative and cynical Russian strike,” Zelensky added.
kra38 cc
https://kra-41—cc.ru
Adolfosuism
20 Oct 25 at 4:42 pm
Ukrainian President Volodymyr Zelensky condemned Russian attacks on the Ukrainian regions of Kharkiv, Zaporizhzhia and Sumy on Monday, saying that the Kremlin intends to “humiliate diplomatic efforts” just hours before European leaders visit the White House.
[url=https://kra-41cc.net]kra36 cc[/url]
“The Russian war machine continues to destroy lives despite everything,” Zelensky said in a statement, hours before he’s due to meet US President Donald Trump in the Oval Office. “That is precisely why we are seeking assistance to put an end to the killings. That is why reliable security guarantees are required. That is why Russia should not be rewarded for its participation in this war.”
[url=https://kra-42—cc.ru]kra41 at[/url]
“Everyone seeks dignified peace and true security,” the Ukrainian president said. “And at this very moment, the Russians are attacking Kharkiv, Zaporizhzhia, the Sumy region, and Odesa, destroying residential buildings and our civilian infrastructure.”
At least seven people were killed in Russia’s attack? on Kharkiv and a further three killed in the ballistic missile strike on the city of Zaporizhzhia, with scores more injured, according to Ukrainian authorities.
“This was a demonstrative and cynical Russian strike,” Zelensky added.
kra36
https://kra–41–at.ru
CharlesJetly
20 Oct 25 at 4:42 pm
Ukrainian President Volodymyr Zelensky condemned Russian attacks on the Ukrainian regions of Kharkiv, Zaporizhzhia and Sumy on Monday, saying that the Kremlin intends to “humiliate diplomatic efforts” just hours before European leaders visit the White House.
[url=https://kra-42.com]kra39 at[/url]
“The Russian war machine continues to destroy lives despite everything,” Zelensky said in a statement, hours before he’s due to meet US President Donald Trump in the Oval Office. “That is precisely why we are seeking assistance to put an end to the killings. That is why reliable security guarantees are required. That is why Russia should not be rewarded for its participation in this war.”
[url=https://kra-42.com]kra39 at[/url]
“Everyone seeks dignified peace and true security,” the Ukrainian president said. “And at this very moment, the Russians are attacking Kharkiv, Zaporizhzhia, the Sumy region, and Odesa, destroying residential buildings and our civilian infrastructure.”
At least seven people were killed in Russia’s attack? on Kharkiv and a further three killed in the ballistic missile strike on the city of Zaporizhzhia, with scores more injured, according to Ukrainian authorities.
“This was a demonstrative and cynical Russian strike,” Zelensky added.
kra38
https://kra–41–at.ru
Brianlus
20 Oct 25 at 4:45 pm
купить диплом техникума в воронеже [url=https://frei-diplom11.ru]купить диплом техникума в воронеже[/url] .
Diplomi_apsa
20 Oct 25 at 4:46 pm
https://social-medialink.com/story5484896/claim-1xbet-bonus-with-promo-code-1xbro200
https://social-medialink.com/story5484896/claim-1xbet-bonus-with-promo-code-1xbro200
20 Oct 25 at 4:46 pm
pin up slot o‘yinlari [url=www.pinup5007.ru]www.pinup5007.ru[/url]
pin_up_uz_qbsr
20 Oct 25 at 4:49 pm