mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
19 lines
394 B
PHP
19 lines
394 B
PHP
<?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()
|
|
{
|
|
}
|
|
}
|