Skip to content

pbOnBeforeDuplicate

Triggers before copying a block or table

Parameters

ParameterDescription
typeType: pbBlock|pbTable
idObject id
objectObject
valuesArray of values
copyPermission to copy
messageCustom 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;
    }
}

© PageBlocks 2019-present