1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-05 02:18:18 +03:00
ifhub.club/application/install/backend/step/updateDb.php

32 lines
539 B
PHP
Raw Normal View History

<?php
class InstallStepUpdateDb extends InstallStepInstallDb
{
protected function getTemplateName()
{
/**
* Показываем шаблон настроек БД
*/
return 'steps/installDb.tpl.php';
}
public function show()
{
}
/**
* Обработка отправки формы
*
* @return bool
*/
public function process()
{
if (!$aRes = $this->processDbCheck()) {
return $aRes;
}
return true;
}
}