2014-05-14 13:24:20 +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
|
|
|
|
|
{
|
|
|
|
|
/**
|
2017-04-24 11:38:19 +00:00
|
|
|
* This event is triggered after the layout components are executed,
|
2014-05-14 13:24:20 +00:00
|
|
|
* but before the page's onStart event.
|
|
|
|
|
*/
|
2014-10-10 23:22:03 +00:00
|
|
|
public function onBeforePageStart()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|