OnChunkFormDelete
Последнее обновление Sep 16th, 2020 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn moreСобытие: OnChunkFormDelete¶
Запускается после удаления чанка.
Служба: 1 - Parser Service Events Группа: Chunks
Параметры события¶
Имя | Описание |
---|---|
chunk | Ссылка на объект modChunk. |
id | Идентификатор Чанка. |
Пример¶
Такой плагин запишет в "Журнал ошибок" id и имя удаленного чанка:
<?php
$eventName = $modx->event->name;
switch($eventName) {
case 'OnChunkFormDelete':
$n = $chunk->get('name');
$modx->log(modX::LOG_LEVEL_ERROR, 'Был удален чанк с id '.$id.' его звали '.$n.' сердца у тебя нет!');
break;
}
Смотри также¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more