OnTemplateVarBeforeRemove
Последнее обновление Apr 20th, 2021 | История страницы | Улучшить эту страницу | Сообщить о проблеме
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Событие: OnTemplateVarBeforeRemove¶
Загружается прямо перед удалением переменной шаблона.
Служба: 1 - Parser Service Events Group: Template Variables
Параметры события¶
Имя | Описание |
---|---|
templateVar | Экземпляр класса modTemplateVar. |
cacheFlag | Указывает, следует ли сохранять в кэше сохраненный TV и, необязательно, указав целочисленное значение за сколько секунд до истечения срока действия. Всегда возвращается 'true' |
Remarks¶
Предыдущее событие | — |
---|---|
Следующее событие | OnTemplateVarRemove |
File | core/model/modx/modtemplatevar.class.php |
Class | modTemplateVar |
Method | public function remove(array $ancestors= array ()) |
Пример¶
Такой плагин выведет в "Журнал ошибок" данные удаленного ТВ:
<?php
$eventName = $modx->event->name;
switch($eventName) {
case 'OnTemplateVarBeforeRemove':
//массив твшки, со всеми параметрами
print_r($templateVar->toArray());
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