Edit on GitHub

Timeline map of the events fired in the CMS (frontend)

  1. cms.page.beforeDisplay

  2. cms.page.initComponents

    layout::onInit()
    page::onInit()

  3. cms.page.init

  4. cms.ajax.beforeRunHandler

  5. cms.component.beforeRunAjaxHandler

  6. cms.component.runAjaxHandler

  7. cms.page.start -- start of page lifecycle

    layout::onStart()

    layout::runComponents()

    • component.beforeRun
      component::onRun()
    • component.run

    layout::onBeforePageStart()

    page::onStart() page::runComponents()

    • component.beforeRun
      component::onRun()
    • component.run page::onEnd()

    layout::onEnd()

  8. cms.page.end -- end of page lifecycle

  9. cms.page.beforeRenderPage

  10. cms.page.render

  11. cms.page.postprocess

  12. cms.page.display

Note: Adding the following code in your Plugin's boot() method will dump the CMS page event stack to your system.log file:

$events_history = [];
Event::listen('*', function ($event, $params) use (&$events_history) {
    if (!str_starts_with($event, 'cms.')) {
        return;
    }
    $events_history[] = $event;
    if ($event === 'cms.page.display') {
        trace_log($events_history);
    }
});

Keep informed

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.

Latest blog post

Winter v1.2.1 is now available

Published October 19, 2022

View this post Read all posts

Latest Winter CMS release

v1.2.1

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

View details View all releases