hhm_backend_03_2023/modules/cms/classes/LayoutCode.php

19 lines
394 B
PHP
Raw Permalink Normal View History

2023-03-08 19:44:42 +00:00
<?php namespace Cms\Classes;
/**
* Parent class for PHP classes created for layout PHP sections.
*
* @package october\cms
* @author Alexey Bobkov, Samuel Georges
*/
class LayoutCode extends CodeBase
{
/**
* This event is triggered after the layout components are executed,
* but before the page's onStart event.
*/
public function onBeforePageStart()
{
}
}