phplibrary/core/widgets/setup.php
2016-06-29 18:51:32 +03:00

20 lines
No EOL
362 B
PHP

<?php
require_once 'core/widgets/dialog.php';
class SetupDialog extends Dialog
{
function setUp()
{
$this->template = "setup";
}
function postMake()
{
$this->view->action = $this->action;
$this->view->title = $this->title;
$this->view->addScriptRaw($this->getPostCode(), true); // CompositeView
}
}
?>