Файл system/controllers/frontpage/hooks/ctype_after_update.php Вес запакованого файла 209b (209 b) Вес распакованого файла: 330b (330 b) Метод сжатия: 8
<?php
class onFrontpageCtypeAfterUpdate extends cmsAction {
public function run($ctype){
$cfg = cmsConfig::getInstance();
if ($cfg->frontpage == "content:{$ctype['name']}" && !$ctype['options']['list_on']){
$cfg->update('frontpage', 'none');
}
return $ctype;
}
}