Миграция с VisualTheme
В файле makehtml.php надо сделать следующие правки:
1. Убить проверку
<?php
if($this->srvIsInstalled('VisualTheme')) {
$service = $this->srvFactory('VisualTheme');
//... куча кода
} else {
echo 'error: VisualTheme is not installed';
}
?>
2. Заменить конструкцию:
<?php
$sm = $service->NewSmarty();
?>
на
<?php
$sm = $this->vtNewSmarty();
?>
3. Заменить конструкцию:
<?php
$sm->assign('pathwithspaces', $service->GetPagePathWithSpaces());
?>
на
<?php
$sm->assign('pathwithspaces', $this->vtGetPagePathWithSpaces());
?>
Все!