pbOnBeforeDuplicate
Triggers before copying a block or table
Parameters
| Parameter | Description |
|---|---|
| type | Type: pbBlock|pbTable |
| id | Object id |
| object | Object |
| values | Array of values |
| copy | Permission to copy |
| message | Custom message |
Examples
When copying, change the title.
php
if ($modx->event->name === 'pbOnBeforeDuplicate') {
if ($type === 'pbBlock' && isset($values['title'])) {
$values['title'] = $values['title'] . ' DUPLICATE';
$modx->event->params['values'] = $values;
}
}