Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: Backend\Widgets\Lists.php
Provides an opportunity to modify the columns of a List widget
Example usage:
Event::listen('backend.list.extendColumns', function ($listWidget) {
// Only for the User controller
if (!$listWidget->getController() instanceof \Backend\Controllers\Users) {
return;
}
// Only for the User model
if (!$listWidget->model instanceof \Backend\Models\User) {
return;
}
// Add an extra birthday column
$listWidget->addColumns([
'birthday' => [
'label' => 'Birthday'
]
]);
// Remove a Surname column
$listWidget->removeColumn('surname');
});
Or
$listWidget->bindEvent('list.extendColumns', function () use ($listWidget) {
// Only for the User controller
if (!$listWidget->getController() instanceof \Backend\Controllers\Users) {
return;
}
// Only for the User model
if (!$listWidget->model instanceof \Backend\Models\User) {
return;
}
// Add an extra birthday column
$listWidget->addColumns([
'birthday' => [
'label' => 'Birthday'
]
]);
// Remove a Surname column
$listWidget->removeColumn('surname');
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Released October 20, 2022
14 UX/UI Improvements, 25 API Changes, 33 Bug Fixes, 4 Security Improvements, 5 Translation Improvements, 1 Performance Improvement, 2 Community Improvements, 2 Dependencies, 0 New Contributors
* @cstorus made their first contribution in https://github.com/wintercms/winter/pull/616
* @simonmannsfeld made their first contribution in https://github.com/wintercms/winter/pull/623
* @quangtrongonline made their first contribution in https://github.com/wintercms/winter/pull/636
* @nathanlesage made their first contribution in https://github.com/wintercms/winter/pull/665
* @vllvll made their first contribution in https://github.com/wintercms/winter/pull/669
* @robertalexa made their first contribution in https://github.com/wintercms/winter/pull/668
* @iamyigitkoc made their first contribution in https://github.com/wintercms/winter/pull/624
* @hecc127 made their first contribution in https://github.com/wintercms/winter/pull/682
* @prsuhas made their first contribution in https://github.com/wintercms/winter/pull/723