Вход Регистрация
Файл: system/controllers/admin/actions/ctypes_props_add.php
Строк: 35
<?php

class actionAdminCtypesPropsAdd extends cmsAction {

    public function 
run($ctype_id$category_id){

        if (!
$ctype_id) { cmsCore::error404(); }
        if (!
$category_id) { cmsCore::error404(); }

        
$content_model cmsCore::getModel('content');

        
$ctype $content_model->getContentType($ctype_id);
        if (!
$ctype) { cmsCore::error404(); }

        
$form $this->getForm('ctypes_prop', array('add'));

        
$is_submitted $this->request->has('submit');

        
$cats = array($category_id);
        
$subcats $content_model->getSubCategoriesTree($ctype['name'], $category_idfalse);
        
        if (
is_array($subcats)) { foreach($subcats as $cat) { $cats[] = $cat['id']; } }
        
        
$prop = array(
            
'ctype_id' => $ctype_id
            
'cats' => $cats
        
);

        if (
$is_submitted){

            
$prop $form->parse($this->request$is_submitted);

            
$errors $form->validate($this,  $prop);

            if (!
$errors){

                
// если не выбрана группа, обнуляем поле группы
                
if (!$prop['fieldset']) { $prop['fieldset'] = null; }

                
// если создается новая группа, то выбираем ее
                
if ($prop['new_fieldset']) { $prop['fieldset'] = $prop['new_fieldset']; }
                unset(
$prop['new_fieldset']);

                
$prop['ctype_id'] = $ctype_id;
                
                
// сохраняем поле
                
$prop_id $content_model->addContentProp($ctype['name'], $prop);
                
                
$this->redirectToAction('ctypes', array('props'$ctype['id']));

            }

            if (
$errors){

                
cmsUser::addSessionMessage(LANG_FORM_ERRORS'error');

            }

        }

        return 
cmsTemplate::getInstance()->render('ctypes_prop', array(
            
'do' => 'add',
            
'ctype' => $ctype,
            
'prop' => $prop,
            
'form' => $form,
            
'errors' => isset($errors) ? $errors false
        
));

    }

}
Онлайн: 2
Реклама