20 lines
No EOL
362 B
PHP
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
|
|
}
|
|
}
|
|
|
|
?>
|