Skip to content

pbOnBeforeGetList

Triggers before generating the grid of a block or table

Parameters

ParameterDescription
typeType: pbBlock|pbTable
whereArray of conditions

Examples


Do not display unpublished objects.

php
if ($modx->event->name === 'pbOnBeforeGetList') {
    if ($modx->user->id > 1) {
        $where['published'] = 1;
        $modx->event->params['where'] = $where;
    }
}

© PageBlocks 2019-present