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!
https://xn--krken23-bn4c.com
Howardreomo
17 Sep 25 at 11:59 pm
What’s Taking place i am new to this, I stumbled upon this I’ve discovered It absolutely
useful and it has helped me out loads. I am hoping
to give a contribution & help different customers like its aided me.
Good job.
turkey visa for australian
18 Sep 25 at 12:01 am
мфо займ онлайн [url=https://zaimy-13.ru/]https://zaimy-13.ru/[/url] .
zaimi_idKt
18 Sep 25 at 12:01 am
всезаймы [url=https://zaimy-12.ru/]https://zaimy-12.ru/[/url] .
zaimi_rhSt
18 Sep 25 at 12:05 am
взо [url=https://zaimy-13.ru/]https://zaimy-13.ru/[/url] .
zaimi_tpKt
18 Sep 25 at 12:05 am
bs2best at, bs2web at и bs2 market: глубокий анализ технологий 2025 года
bs2best at
bs2best.at blacksprut marketplace Official
CharlesNarry
18 Sep 25 at 12:06 am
Hello There. I found your weblog the use of msn.
That is a really well written article. I’ll make sure to bookmark it and come back to learn more of
your useful info. Thanks for the post. I will definitely return.
turkey visa for australian
18 Sep 25 at 12:07 am
мфо займ онлайн [url=zaimy-12.ru]zaimy-12.ru[/url] .
zaimi_gsSt
18 Sep 25 at 12:08 am
https://wirtube.de/a/uopqlkumy198/video-channels
Timothyces
18 Sep 25 at 12:08 am
https://mp-digital.ru/
ThomasSOB
18 Sep 25 at 12:08 am
Attractive section of content. I just stumbled upon your website
and in accession capital to assert that I get actually
enjoyed account your blog posts. Any way I’ll be subscribing to your augment and even I achievement you access consistently quickly.
آدرس دانشگاه علوم پزشکی اردبیل
18 Sep 25 at 12:11 am
турецкие сериалы на русском языке [url=kinogo-13.top]турецкие сериалы на русском языке[/url] .
kinogo_nuMl
18 Sep 25 at 12:13 am
Agree with this. Similar thoughts on my blog – winbet-bg.top.
winbet-bg.top
18 Sep 25 at 12:20 am
Оклады по званию 2025 для капитана — 15 500 руб., плюс надбавка за выслугу 25%. Калькулятор показал полное довольствие 65 тысяч. индексация довольствия
Brentagila
18 Sep 25 at 12:21 am
https://xn--krken23-bn4c.com
Howardreomo
18 Sep 25 at 12:21 am
купить диплом с занесением [url=www.educ-ua19.ru]купить диплом с занесением[/url] .
Diplomi_ljml
18 Sep 25 at 12:23 am
микрозайм все [url=http://zaimy-13.ru/]http://zaimy-13.ru/[/url] .
zaimi_pkKt
18 Sep 25 at 12:23 am
все микрозаймы [url=www.zaimy-13.ru/]все микрозаймы[/url] .
zaimi_uuKt
18 Sep 25 at 12:26 am
микрозайм всем [url=zaimy-12.ru]zaimy-12.ru[/url] .
zaimi_fjSt
18 Sep 25 at 12:27 am
https://internet18406.tinyblogging.com/5-hechos-fГЎcil-sobre-coaching-organizacional-descritos-80173584
El coaching ejecutivo es clave precisamente porque no se pierde con los sintomas (agotamiento). Ataca estas bases de frente, ayudandote a redisenar desde cero tu mirada del trabajo.
3 Claves Poderosas del Coaching Ejecutivo para un rol saludable
1. De Manejar el Tiempo a Orquestar la fuerza
Deja de gestionar el tiempo. La verdadera divisa de valor de un ejecutivo no son las jornadas, sino la calidad de su rendimiento.
Un coach te ensena a hacer un mapa individual: reconocer que acciones, encuentros e incluso personas son ladrones de animo y cuales son “cargadores”.
Se trata de replantear tu calendario de forma consciente. Cuida tus espacios de plena energia (usualmente las mananas) para el quehacer de alto impacto: crear.
2. Del “Si” por inercia al “No” inteligente
Progresaste a donde has llegado por tu capacidad de reaccion y de responder “si”. Pero para aguantar y prevenir el burnout, necesitas manejar el poder del “no” efectivo.
Un formador te entrena a clarificar con seguridad tus 2-3 objetivos. Luego, te guia a usar un filtro efectivo: “?Esto me lleva directamente a uno de mis objetivos?”. Si la contestacion es no, la alternativa debe ser delegar.
3. De la Omnipotencia a la asignacion profunda
El habito de “yo lo hago mas rapido y mejor” es el atajo directo al cansancio. Creas un bloqueo que te ahoga y, de paso, desaprovecha a tu equipo.
La asignacion profunda no es simplemente ceder tareas aburridas. Es ceder la autoridad de un resultado completo.
Un facilitador te guia a hacer una relacion real: ?Que funciones solo yo manejo? Todo lo demas es transferible.
El giro de mentalidad es pasar de “necesito controlar todo” a “mi rol es desarrollar a mi equipo”.
Demanda fe, pero es la unica manera de multiplicar tu resultado sin colapsar.
JuniorShido
18 Sep 25 at 12:28 am
лучшие займы онлайн [url=www.zaimy-13.ru]www.zaimy-13.ru[/url] .
zaimi_qvKt
18 Sep 25 at 12:29 am
Этапность лечения обеспечивает постепенное улучшение здоровья и создает условия для долгосрочной ремиссии.
Изучить вопрос глубже – http://narkologicheskaya-klinika-v-tveri0.ru/chastnaya-narkologicheskaya-klinika-tver/
KevinWer
18 Sep 25 at 12:30 am
https://wirtube.de/a/axkdoqlcpz896/video-channels
Timothyces
18 Sep 25 at 12:30 am
Tourists fined and banned from Venice for swimming in canal
[url=https://trip-scan.co]трипскан сайт[/url]
A couple from the United Kingdom had to cut their vacation in Venice short after being caught swimming in the Grand Canal.
The 35-year-old British man and his 25-year-old Romanian girlfriend were forced to return to their home in the UK on Thursday, the same day they arrived in the city, after gondoliers reported them to local police for taking a dip in the canal.
The pair were fined €450 ($529) each and expelled from Venice for 48 hours, marking the 1,136th such sanction to be handed down to badly behaved tourists in the city so far this year, according to the Venice City Police.
The unnamed couple took the plunge near the Accademia bridge near St. Mark’s Square and gondoliers at the Rio San Vidal kiosk immediately called authorities, who removed them from the water.
“I thank the gondoliers for their cooperation and timely reporting,” said Venice Security Councillor Elisabetta Pesce in a statement published by city authorities on Friday.
https://trip-scan.co
tripscan
“Venice must be defended from those who disrespect it: protecting the city means ensuring decorum for residents and visitors who experience it with civility.”
Swimming in the Venice canals is prohibited for a variety of reasons, including the intense boat traffic and the cleanliness — or lack thereof — of the water, according to the city’s tourism ministry.
Of the 1,136 orders of expulsion from the city so far this year, about 10 were for swimming.
Related article
Tourists take photographs on the Rialto Bridge in Venice, Italy, on Saturday, April 8, 2023. Italy’s upcoming budget outlook will probably incorporate a higher growth forecast for 2023 followed by a worsened outlook for subsequent years, according to people familiar with the matter. Photographer: Andrea Merola/Bloomberg via Getty Images
Rising waters and overtourism are killing Venice. Now the fight is on to save its soul
“Since the beginning of the year, we have issued a total of 1,136 orders of expulsion for incidents of degradation and uncivilized behavior,” Venice local police deputy commander Gianni Franzoi said in a statement shared with CNN.
Poor visitor behavior is one of the worst byproducts of overtourism, Franzoi said, and incidents are on the rise.
In July 2024, an Australian man was fined and expelled for diving off the Rialto Bridge after his friends posted about it on social media.
The year before, two French tourists were fined and expelled for skinny dipping in the canal under the moonlight. In August 2022, a German man was fined and expelled for surfing in the canal.
Related article
Aerial view of the plagued ghost island of Poveglia in the Venetian lagoon
‘Haunted’ Venice island to become a locals-only haven where tourists are banned
Venice’s authorities have been trying to balance the need for visitor income with residents’ demands for a city that works for them.
Day trippers now pay a €10 entrance fee on summer weekends and during busy periods throughout the year.
The city has also banned tour groups of more than 25 people, loudspeakers and megaphones, and even standing on narrow streets to listen to tour guides.
“It was necessary to establish a system of penalties that would effectively deter potential violations,” Pesce said when the ordinance was passed in February.
“Our goal remains to combat all forms of irregularities related to overtourism in the historic lagoon city center,” she added.
“The new rules for groups accompanied by guides encourage a more sustainable form of tourism, while also ensuring greater protection and safety in the city and better balancing the needs of Venice residents and visitors.”
Allenled
18 Sep 25 at 12:30 am
Чем раньше начато лечение, тем выше вероятность полного восстановления здоровья без тяжёлых последствий для организма и психики. В клинике «Наркосфера» к каждому случаю подходят максимально внимательно и индивидуально.
Подробнее можно узнать тут – [url=https://narkologicheskaya-klinika-balashiha5.ru/]частная наркологическая клиника[/url]
RichardPab
18 Sep 25 at 12:30 am
микрозайм всем [url=https://www.zaimy-12.ru]https://www.zaimy-12.ru[/url] .
zaimi_eiSt
18 Sep 25 at 12:31 am
https://xn--krken21-bn4c.com
Howardreomo
18 Sep 25 at 12:32 am
internet apotheke [url=https://potenzapothekede.shop/#]tadalafil erfahrungen deutschland[/url] wirkung und dauer von tadalafil
StevenTilia
18 Sep 25 at 12:32 am
In today’s fast-evolving financial landscape, it’s rare to find a platform that
seamlessly bridges both crypto and fiat operations, especially for large-scale operations.
However, I came across this forum topic that dives deep into a platform which supports everything from buying
Bitcoin to managing fiat payments, and it’s especially recommended for big businesses.
The recommendation shared by users in the discussion made it
clear that this platform is more than just a simple exchange – it’s a full-fledged
financial ecosystem for both individuals and companies.
What’s particularly valuable is the level of detail provided in the forum topic, including the
pros and cons, user reviews, and case studies showing how
enterprises have integrated the platform into their operations.
I’ve rarely come across such a balanced opinion that addresses both crypto-savvy users and traditional finance professionals, especially in the context of business-scale
needs.
It’s a long read, but this forum topic offers some of the most detailed opinions on using crypto platforms for corporate and fiat operations alike.
Definitely worth digging into this website.
website
18 Sep 25 at 12:33 am
все займы [url=www.zaimy-12.ru/]www.zaimy-12.ru/[/url] .
zaimi_amSt
18 Sep 25 at 12:33 am
Кроме того мы предложили список из десяти мобильных приложений с лучшим пользовательским интерфейсом,
которые вы также можете использовать, как пример для вдохновения.
http://www.asgharent.com/index.php/2025/07/22/cherty-internetkazino-s-vygodnymi-igrovymi-avtomatami/
18 Sep 25 at 12:34 am
смотреть фильмы онлайн [url=https://www.kinogo-13.top]смотреть фильмы онлайн[/url] .
kinogo_zzMl
18 Sep 25 at 12:36 am
Hey would you mind sharing which blog platform you’re using?
I’m going to start my own blog in the near future but I’m having a difficult time
deciding between BlogEngine/Wordpress/B2evolution and Drupal.
The reason I ask is because your layout seems different then most blogs and I’m looking for
something completely unique. P.S Sorry for getting off-topic but I had to ask!
AfriQuantumX
18 Sep 25 at 12:37 am
It’s truly very difficult in this busy life to listen news on TV, thus
I just use world wide web for that purpose, and take the newest news.
Meteor Profit
18 Sep 25 at 12:39 am
мфо займ [url=www.zaimy-13.ru]www.zaimy-13.ru[/url] .
zaimi_pxKt
18 Sep 25 at 12:39 am
Близкий человек в запое? Не ждите ухудшения. Обратитесь в клинику — здесь проведут профессиональный вывод из запоя с последующим восстановлением организма.
Ознакомиться с деталями – [url=https://vyvod-iz-zapoya-krasnodar12.ru/]narkolog-na-dom-kruglosutochno krasnodar[/url]
Robertrog
18 Sep 25 at 12:40 am
сериалы онлайн [url=https://www.kinogo-13.top]https://www.kinogo-13.top[/url] .
kinogo_sbMl
18 Sep 25 at 12:40 am
сайт микрозаймов [url=www.zaimy-12.ru]www.zaimy-12.ru[/url] .
zaimi_qzSt
18 Sep 25 at 12:42 am
Такая структура делает лечение последовательным и предсказуемым, повышая шансы на положительный исход.
Детальнее – [url=https://narkologicheskaya-klinika-v-omske0.ru/]вывод наркологическая клиника[/url]
Michaelker
18 Sep 25 at 12:43 am
1xbet promo code kz 1xbet Bangladesh Promo Code: Unlock Exclusive Bonuses and Enhanced Betting Opportunities In the vibrant landscape of online betting in Bangladesh, 1xbet stands out as a leading platform, offering a diverse range of sporting events, casino games, and other exciting opportunities. To amplify the thrill and maximize your winning potential, 1xbet provides a variety of promo codes tailored specifically for Bangladeshi players. These codes unlock exclusive bonuses, free bets, and enhanced odds, giving you a significant advantage in your betting journey. Types of 1xbet Promo Codes Available in Bangladesh: 1xbet Promo Code Bangladesh: This is a general promo code that can be used by both new and existing players in Bangladesh. It typically unlocks a welcome bonus, deposit bonus, or free bet. 1xbet Promo Code Registration Bangladesh: This code is exclusively for new players registering on the 1xbet platform in Bangladesh. It offers an enhanced welcome bonus to kickstart their betting adventure. 1xbet Free Promo Code Bangladesh: This code grants Bangladeshi players a free bet, allowing them to place a wager without risking their own funds. 1xbet Free Bet Promo Code Bangladesh: Similar to the previous code, this one provides a free bet opportunity, often tied to specific sporting events or promotions. 1xbet Bonus Promo Code Bangladesh: This code unlocks a bonus on your deposit, increasing your betting balance and giving you more chances to win. Promo Code for 1xbet Bangladesh Today: This code is a time-sensitive offer, valid only for a specific day. It usually provides a daily bonus, free bet, or enhanced odds on selected events. 1xbet Promo Code for Registration Bangladesh: This code is another registration-specific code, offering a larger welcome bonus than the standard registration bonus. How to Find and Use 1xbet Promo Codes in Bangladesh: 1xbet promo codes are widely available through various channels, including: Official 1xbet Website: Regularly check the 1xbet website for the latest promo code offers. Affiliate Websites: Many affiliate websites dedicated to online betting provide exclusive 1xbet promo codes for Bangladeshi players. Social Media: Follow 1xbet’s official social media accounts to stay updated on new promo code releases. Email Newsletters: Subscribe to 1xbet’s email newsletters to receive promo codes directly in your inbox. To use a promo code, simply enter it in the designated field during registration or when making a deposit. The bonus or free bet will be automatically credited to your account. Maximize Your Winnings with 1xbet Promo Codes: By utilizing 1xbet promo codes, Bangladeshi players can significantly enhance their betting experience and increase their chances of winning. Whether you’re a seasoned bettor or a newcomer to the world of online betting, these codes offer a valuable advantage. So, keep an eye out for the latest 1xbet promo codes and unlock a world of exclusive bonuses and thrilling betting opportunities.
Charlesepilm
18 Sep 25 at 12:44 am
микрозаймы все [url=www.zaimy-13.ru]www.zaimy-13.ru[/url] .
zaimi_ozKt
18 Sep 25 at 12:48 am
фильмы про войну смотреть онлайн [url=kinogo-13.top]kinogo-13.top[/url] .
kinogo_bkMl
18 Sep 25 at 12:51 am
микрозайм всем [url=http://zaimy-12.ru]http://zaimy-12.ru[/url] .
zaimi_tnSt
18 Sep 25 at 12:52 am
https://beteiligung.stadtlindau.de/profile/%D0%93%D0%B4%D0%B5%20%D0%BA%D1%83%D0%BF%D0%B8%D1%82%D1%8C%20%D0%BA%D0%BE%D0%BA%D0%B0%D0%B8%D0%BD%20%D0%92%D0%B5%D1%80%D0%B1%D1%8C%D0%B5/
Timothyces
18 Sep 25 at 12:52 am
займы все [url=http://zaimy-13.ru/]http://zaimy-13.ru/[/url] .
zaimi_omKt
18 Sep 25 at 12:52 am
Awesome! Its in fact amazing paragraph, I have got much clear idea concerning from this paragraph.
Unavex Platform
18 Sep 25 at 12:53 am
Wow, fantastic blog layout! How long have you been blogging for?
you made blogging look easy. The overall look
of your web site is magnificent, let alone
the content!
Epure Paylen
18 Sep 25 at 12:56 am
все займы [url=https://zaimy-12.ru/]https://zaimy-12.ru/[/url] .
zaimi_mlSt
18 Sep 25 at 12:56 am
займы россии [url=http://zaimy-13.ru/]http://zaimy-13.ru/[/url] .
zaimi_cdKt
18 Sep 25 at 12:57 am
фильмы в хорошем качестве [url=https://www.kinogo-13.top]https://www.kinogo-13.top[/url] .
kinogo_ywMl
18 Sep 25 at 1:00 am