Файл: system/controllers/admin/actions/ctypes_props_unbind.php
Строк: 27
<?php
class actionAdminCtypesPropsUnbind extends cmsAction {
public function run($ctype_id, $prop_id, $cat_id){
if (!$ctype_id || !$prop_id || !$cat_id) { cmsCore::error404(); }
$content_model = cmsCore::getModel('content');
$ctype = $content_model->getContentType($ctype_id);
if (!$ctype) { cmsCore::error404(); }
$content_model->unbindContentProp($ctype['name'], $prop_id, $cat_id);
cmsUser::addSessionMessage(LANG_CP_PROPS_UNBIND_SC, 'success');
$this->redirectToAction('ctypes', array('props', $ctype_id));
}
}