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://kyc-diplom.com/kupit-diplom-vysshee-obrazovanie.html/]kyc-diplom.com/kupit-diplom-vysshee-obrazovanie.html[/url]
Cazrydv
10 Sep 25 at 10:15 pm
Женский онлайн портал https://femalesecret.kyiv.ua онлайн-ресурс для девушек и женщин. Мода, красота, здоровье, семья и материнство. Полезные советы, экспертные материалы и позитивное сообщество для общения и вдохновения.
JeffreyFuems
10 Sep 25 at 10:15 pm
перепланировка квартиры дизайн проект [url=www.proekt-pereplanirovki-kvartiry8.ru]www.proekt-pereplanirovki-kvartiry8.ru[/url] .
proekt pereplanirovki kvartiri_reMl
10 Sep 25 at 10:15 pm
авиатор 1хбет [url=www.aviator-igra-5.ru/]авиатор 1хбет[/url] .
aviator igra_ohKt
10 Sep 25 at 10:16 pm
В первые часы важно не «залить» пациента растворами, а корректно подобрать темп и состав с учётом возраста, массы тела, артериального давления, лекарственного фона (антигипертензивные, сахароснижающие, антиаритмические препараты) и переносимости. Именно поэтому мы не отдаём лечение на откуп шаблонам — каждая схема конструируется врачом на месте, а эффективность оценивается по понятным метрикам.
Исследовать вопрос подробнее – [url=https://vyvod-iz-zapoya-v-ryazani14.ru/]врач вывод из запоя рязань[/url]
Augustgreds
10 Sep 25 at 10:19 pm
авиатор онлайн казино [url=http://aviator-igra-5.ru/]авиатор онлайн казино[/url] .
aviator igra_enKt
10 Sep 25 at 10:20 pm
вывод из запоя цена
vivod-iz-zapoya-orenburg007.ru
вывод из запоя цена
izzapoyaorenburgNeT
10 Sep 25 at 10:23 pm
фабрика для пошива одежды [url=www.nitkapro.ru/]www.nitkapro.ru/[/url] .
shveinoe proizvodstvo_anea
10 Sep 25 at 10:24 pm
проект по перепланировке квартиры [url=https://www.proekt-pereplanirovki-kvartiry8.ru]проект по перепланировке квартиры[/url] .
proekt pereplanirovki kvartiri_esMl
10 Sep 25 at 10:24 pm
Кракен (kraken) – ты знаешь что это, уже годами проверенный сервис российского даркнета.
Недавно мы запустили p2p обмены и теперь вы можете обменивать любую сумму для пополнения.
Всегда есть свежая ссылка кракен
через ВПН:
кракен marketplace
web page
10 Sep 25 at 10:26 pm
купить аттестат цена [url=www.educ-ua4.ru]купить аттестат цена[/url] .
Diplomi_sePl
10 Sep 25 at 10:27 pm
фабрика пошива одежды [url=http://nitkapro.ru/]http://nitkapro.ru/[/url] .
shveinoe proizvodstvo_voea
10 Sep 25 at 10:30 pm
драгон мани официальный сайт
drgn
10 Sep 25 at 10:30 pm
купить диплом с проводкой [url=https://educ-ua13.ru]купить диплом с проводкой[/url] .
Diplomi_pypn
10 Sep 25 at 10:31 pm
Good site you’ve got here.. It’s difficult to find excellent writing like yours
these days. I honestly appreciate individuals like you!
Take care!!
Krystle
10 Sep 25 at 10:31 pm
сколько стоит перепланировка квартиры [url=http://www.proekt-pereplanirovki-kvartiry8.ru]сколько стоит перепланировка квартиры[/url] .
proekt pereplanirovki kvartiri_ttMl
10 Sep 25 at 10:33 pm
Onze online casino reviews zijn zo compleet mogelijk en we proberen alle aspecten die belangrijk kunnen zijn te bespreken. Speciale deals of de meest recente bonusacties bij BetCity vind je uiteraard ook terug op onze bonuspagina met de meest actuele bonusdeals voor wedden op voetbal en andere sportwedstrijden! Bob casino de goeie ouwe Put was niet het type om een grafschrift voor te schrijven of een monument voor op te richten, dat is Van M. Fruitautomaten zijn al jarenlang een favoriet bij veel gokkers en het is niet moeilijk in te zien waarom, gratis slots spelen online fantastisch dat jullie met zo’n grote groep aan onze eerste tocht voor wielrenners hebben meegedaan. In totaal kan je tien verschillende live spel shows spelen. Ook zijn er genoeg, veilige betaalmethoden die je kan gebruiken en worden uitbetalingen netjes verwerkt. Transacties verlopen op een veilige manier en je gegevens zijn goed beschermd. Op die manier probeert de goksite ze te promoten.
boocasino
10 Sep 25 at 10:34 pm
швейное производство [url=nitkapro.ru]nitkapro.ru[/url] .
shveinoe proizvodstvo_utea
10 Sep 25 at 10:35 pm
Marvelous, what a web site it is! This web site
presents helpful data to us, keep it up.
Follow this link
10 Sep 25 at 10:36 pm
Ваш дом – ваши правила:
выбирайте, как быстро
хотите заехать
Вы сами решаете, на каком этапе завершить строительство. Дом можно получить в базовой комплектации, подготовленным к чистовой отделке или укомплектованным к заселению
Фиксированные сроки строительства и стоимость по договору для любого варианта готовности.
[url=https://ms-stroy.ru/stroitelstvo_domov_iz_kirpicha/]дом из кирпича[/url]
Теплый контур
Включает в себя:
Подготовительные работы: выбор или разработка проекта дома
Устройство фундамента с устройством закладных под коммуникации
Устройство несущих стен, внешних и внутренних
Устройство перекрытий
Монтаж внутренних перегородок
Устройство монолитной железобетонной лестницы
Устройство утепленной кровли
Изготовление и монтаж окон
Рассчитать стоимость >
White box
Включает в себя «теплый контур», а также:
Работы по отделке фасада
Монтаж водосточной системы
Подшивка карнизных свесов
Внутренняя штукатурка стен и откосов
Монтаж системы отопления и водоснабжения
Монтаж черновой электрики со щитом и заземлением
Устройство черновой стяжки пола
Рассчитать стоимость > [url=https://ms-stroy.ru/cokolnyj_etazh_chastnogo_doma/]цокольный этаж цена[/url]
Под ключ
Включает в себя «вайтбокс», а также:
Подготовка стен к финишному покрытию
Покраска оконных откосов и монтаж подоконников
Поклейка обоев, покраска стен, монтаж плитки
Монтаж напольных покрытий (плитка, ламинат и пр.)
Монтаж потолков и приборов освещения
Монтаж межкомнатных дверей
Монтаж чистовой сантехники, розеток и выключателей
Меблировка помещений и установка бытовой техники (Набор опций и материалов подбирается индивидуально)
Рассчитать стоимость >
https://ms-stroy.ru/
сколько стоит построить дом из газобетона
Jessesaf
10 Sep 25 at 10:36 pm
darknet site nexus darknet access nexus market url [url=https://darkmarketsgate.com/ ]nexus official site [/url]
Jamespem
10 Sep 25 at 10:38 pm
Да рега была шикарная… Но вот как раз таки с ней и случился перебой, ОЧЕНЬ жаль!!! А так по работе остались отличные впечатления
https://bio.site/znnufuugydp
Однако, селлеру в его интересах было бы полезно появиться и разъяснить ситтуацию дабы избежать гневных сообщений. Обещание что отправка будет пт-сб не было выполнено. Треков нет.
RogerCer
10 Sep 25 at 10:38 pm
купить украинский диплом о высшем образовании [url=https://educ-ua18.ru]купить украинский диплом о высшем образовании[/url] .
Diplomi_xcPi
10 Sep 25 at 10:38 pm
https://www.storeboard.com/candetoxblend%E2%80%93detoxorinal%C3%ADderenchile
Gestionar una prueba de orina puede ser complicado. Por eso, se ha creado una alternativa confiable desarrollada en Canada.
Su formula precisa combina nutrientes esenciales, lo que prepara tu organismo y enmascara temporalmente los metabolitos de THC. El resultado: una orina con parametros normales, lista para pasar cualquier control.
Lo mas destacado es su ventana de efectividad de 4 a 5 horas. A diferencia de otros productos, no promete milagros, sino una estrategia de emergencia que responde en el momento justo.
Miles de trabajadores ya han experimentado su rapidez. Testimonios reales mencionan resultados exitosos en pruebas preocupacionales.
Si necesitas asegurar tu resultado, esta formula te ofrece seguridad.
JuniorShido
10 Sep 25 at 10:42 pm
Доброго!
Долго ломал голову как поднять сайт и свои проекты и нарастить DR и узнал от успещных seo,
профи ребят, именно они разработали недорогой и главное буст прогон Хрумером – https://imap33.site
Увеличение DR и Ahrefs возможно с помощью прогонов ссылок через Xrumer. Массовая рассылка ссылок на форумах помогает ускорить процесс линкбилдинга. Программы для линкбилдинга создают качественные внешние ссылки для вашего сайта. Прогон ссылок с Xrumer позволяет быстро улучшить позиции в поисковых системах. Попробуйте Xrumer для успешного SEO-продвижения.
ключевые слова seo текст, интернет продвижение сайта, Xrumer: советы и трюки
Линкбилдинг для продвижения в топ-10, оптимизация сайта seo онлайн, сео ооо
!!Удачи и роста в топах!!
JeromeNow
10 Sep 25 at 10:42 pm
IntimaCare UK [url=https://intimacareuk.com/#]IntimaCare UK[/url] IntimaCareUK
Albertmoone
10 Sep 25 at 10:45 pm
Современная наркология — это не набор «сильных капельниц», а точные инструменты, управляющие скоростью и направлением изменений. В «НеваМеде» технологический контур работает тихо и незаметно для пациента, но даёт врачу контроль над деталями, от которых зависит безопасность.
Узнать больше – [url=https://narkologicheskaya-klinika-v-spb14.ru/]вывод наркологическая клиника санкт-петербург[/url]
DavidHoumn
10 Sep 25 at 10:46 pm
Сайт для женщин https://femaleguide.kyiv.ua гармония стиля и жизни. Уход за собой, рецепты, дом, отношения, карьера и путешествия. Читайте статьи, делитесь опытом и вдохновляйтесь новыми идеями.
Michaelmib
10 Sep 25 at 10:47 pm
купить диплом о высшем киев [url=www.educ-ua4.ru]купить диплом о высшем киев[/url] .
Diplomi_ymPl
10 Sep 25 at 10:47 pm
This article gives clear idea in support of the new viewers of blogging, that truly how
to do running a blog.
dewascatter link alternatif
10 Sep 25 at 10:48 pm
Сайт для женщин https://femaleguide.kyiv.ua гармония стиля и жизни. Уход за собой, рецепты, дом, отношения, карьера и путешествия. Читайте статьи, делитесь опытом и вдохновляйтесь новыми идеями.
Michaelmib
10 Sep 25 at 10:49 pm
1win 500% [url=https://www.1win12001.ru]https://www.1win12001.ru[/url]
1win_txPi
10 Sep 25 at 10:50 pm
Мы готовы предложить дипломы любой профессии по приятным тарифам. Купить диплом геолога — [url=http://kyc-diplom.com/diplomy-po-professii/kupit-diplom-geologa.html/]kyc-diplom.com/diplomy-po-professii/kupit-diplom-geologa.html[/url]
Cazraqv
10 Sep 25 at 10:50 pm
В Люберцах капельница от запоя может спасти здоровье — в Stop Alko работают опытные наркологи, которые точно знают, как снять интоксикацию без вреда.
Исследовать вопрос подробнее – [url=https://kapelnica-ot-zapoya-lyubercy12.ru/]капельница от запоя на дому московская область[/url]
Jeffreyral
10 Sep 25 at 10:51 pm
Сайт для женщин https://femaleguide.kyiv.ua гармония стиля и жизни. Уход за собой, рецепты, дом, отношения, карьера и путешествия. Читайте статьи, делитесь опытом и вдохновляйтесь новыми идеями.
Michaelmib
10 Sep 25 at 10:51 pm
Автомобильный новостной портал https://tuning-kh.com.ua всё об авто в одном месте: новости, цены, обзоры, тест-драйвы, авторынок. Советы экспертов и полезные материалы для водителей и тех, кто планирует купить машину.
RobertOwepe
10 Sep 25 at 10:51 pm
Сайт про машины https://tvk-avto.com.ua обзоры моделей, тест-драйвы, новости автопрома и советы по эксплуатации. Полезные статьи о выборе авто, уходе, ремонте и актуальные материалы для автовладельцев.
WilliamWah
10 Sep 25 at 10:52 pm
stromectol pills home delivery UK [url=https://meditrustuk.shop/#]safe ivermectin pharmacy UK[/url] MediTrust UK
Albertmoone
10 Sep 25 at 10:53 pm
Женский онлайн портал https://femalesecret.kyiv.ua онлайн-ресурс для девушек и женщин. Мода, красота, здоровье, семья и материнство. Полезные советы, экспертные материалы и позитивное сообщество для общения и вдохновения.
JeffreyFuems
10 Sep 25 at 10:53 pm
купить диплом с реестром [url=http://educ-ua13.ru/]купить диплом с реестром[/url] .
Diplomi_jtpn
10 Sep 25 at 10:54 pm
букмекерская контора mostbet [url=http://mostbet12002.ru]http://mostbet12002.ru[/url]
mostbet_plsl
10 Sep 25 at 10:54 pm
Автомобильный новостной портал https://tuning-kh.com.ua всё об авто в одном месте: новости, цены, обзоры, тест-драйвы, авторынок. Советы экспертов и полезные материалы для водителей и тех, кто планирует купить машину.
RobertOwepe
10 Sep 25 at 10:54 pm
Сайт про машины https://tvk-avto.com.ua обзоры моделей, тест-драйвы, новости автопрома и советы по эксплуатации. Полезные статьи о выборе авто, уходе, ремонте и актуальные материалы для автовладельцев.
WilliamWah
10 Sep 25 at 10:54 pm
It’s no secret how President Donald Trump feels about sports teams turning away from Native American mascots. He’s repeatedly called for the return of the Washington Redskins and Cleveland Indians, claiming their recent rebrands were part of a “woke” agenda designed to erase history.
[url=https://kra-39-cc.org]kra39 cc [/url]
But one surprising team has really gotten the president’s attention: the Massapequa Chiefs.
The Long Island school district has refused to change its logo and name under a mandate from New York state banning schools from using team mascots appropriating Indigenous culture. Schools were given two years to rebrand, but Massapequa is the lone holdout, having missed the June 30 deadline to debut a new logo.
[url=https://kra-38—cc.ru]kra33 cc[/url]
The district lost an initial lawsuit it filed against the state but now has the federal government on its side. In May, Trump’s Department of Education intervened on the district’s behalf, claiming the state’s mascot ban is itself discriminatory.
Massapequa’s Chiefs logo — an American Indian wearing a yellow feathered headdress — is expected to still be prominently displayed when the fall sports season kicks off soon, putting the quiet Long Island hamlet at the center of a political firestorm.
[url=https://kra—39–cc.ru]kra37[/url]
The district is now a key “battleground,” said Oliver Roberts, a Massapequa alum and the lawyer representing the school board in its fresh lawsuit against New York claiming that the ban is unconstitutional and discriminatory.
The Trump administration claims New York’s mascot ban violates Title VI of the Civil Rights Act of 1964, which prohibits recipients of federal funds from engaging in discriminatory behavior based on race, color or national origin — teeing up a potentially precedent-setting fight.
The intervention on behalf of Massapequa follows a pattern for a White House that has aggressively applied civil rights protections to police “reverse discrimination” and coerced schools and universities into policy concessions by withholding federal funds.
“Our goal is to assist nationally,” Roberts said. “It’s us putting forward our time and effort to try and assist with this national movement and push back against the woke bureaucrats trying to cancel our country’s history and tradition.”
kra35 cc
kra38 сс
TimothyWaime
10 Sep 25 at 10:55 pm
фабрика пошива одежды [url=www.nitkapro.ru]www.nitkapro.ru[/url] .
shveinoe proizvodstvo_oqea
10 Sep 25 at 10:55 pm
Автомобильный новостной портал https://tuning-kh.com.ua всё об авто в одном месте: новости, цены, обзоры, тест-драйвы, авторынок. Советы экспертов и полезные материалы для водителей и тех, кто планирует купить машину.
RobertOwepe
10 Sep 25 at 10:55 pm
Сайт про машины https://tvk-avto.com.ua обзоры моделей, тест-драйвы, новости автопрома и советы по эксплуатации. Полезные статьи о выборе авто, уходе, ремонте и актуальные материалы для автовладельцев.
WilliamWah
10 Sep 25 at 10:56 pm
1win официальный сайт вход скачать [url=1win12005.ru]1win12005.ru[/url]
1win_yxol
10 Sep 25 at 10:56 pm
Женский онлайн портал https://femalesecret.kyiv.ua онлайн-ресурс для девушек и женщин. Мода, красота, здоровье, семья и материнство. Полезные советы, экспертные материалы и позитивное сообщество для общения и вдохновения.
JeffreyFuems
10 Sep 25 at 10:56 pm
бонусный счет 1win как использовать [url=1win12005.ru]1win12005.ru[/url]
1win_xiol
10 Sep 25 at 10:57 pm