Библиотека для cis, online, cms1

This commit is contained in:
Фёдор Подлеснов 2016-06-29 18:51:32 +03:00
commit 3c2e614d87
269 changed files with 39854 additions and 0 deletions

20
core/widgets/setup.php Normal file
View file

@ -0,0 +1,20 @@
<?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
}
}
?>