mocha/php/mocha-ccx/ui/pages/CcxPage.php
2023-11-11 20:28:45 -05:00

18 lines
256 B
PHP

<?php
namespace Mocha\UI\Pages;
use Phast\RenderingEventArgs;
use Phast\WebPage;
class HomePage extends WebPage
{
protected function OnRendering(RenderingEventArgs $re)
{
parent::OnRendering($re);
mocha_init_spot_timer($this);
}
}
?>