コード例 #1
0
ファイル: item_edit.php プロジェクト: Val-Git/icms2
 public function run()
 {
     // Получаем название типа контента и сам тип
     $ctype = $this->model->getContentTypeByName($this->request->get('ctype_name', ''));
     if (!$ctype) {
         cmsCore::error404();
     }
     $id = $this->request->get('id', 0);
     if (!$id) {
         cmsCore::error404();
     }
     // Получаем нужную запись
     $item = $this->model->getContentItem($ctype['name'], $id);
     if (!$item) {
         cmsCore::error404();
     }
     // проверяем наличие доступа
     if (!cmsUser::isAllowed($ctype['name'], 'edit')) {
         cmsCore::error404();
     }
     if (!cmsUser::isAllowed($ctype['name'], 'edit', 'all')) {
         if (cmsUser::isAllowed($ctype['name'], 'edit', 'own') && $item['user_id'] != $this->cms_user->id) {
             cmsCore::error404();
         }
     }
     $is_premoderation = $ctype['is_premod_edit'];
     $is_moderator = $this->cms_user->is_admin || $this->model->userIsContentTypeModerator($ctype['name'], $this->cms_user->id);
     if (!$item['is_approved'] && !$is_moderator) {
         cmsCore::error404();
     }
     // Получаем родительский тип, если он задан
     if ($this->request->has('parent_type')) {
         $parent['ctype'] = $this->model->getContentTypeByName($this->request->get('parent_type', ''));
         $parent['item'] = $this->model->getContentItemBySLUG($parent['ctype']['name'], $this->request->get('parent_slug', ''));
     }
     // Определяем наличие полей-свойств
     $props = $this->model->getContentProps($ctype['name']);
     $ctype['props'] = $props;
     // Если включены личные папки - получаем их список
     $folders_list = array();
     if ($ctype['is_folders']) {
         $folders_list = $this->model->getContentFolders($ctype['id'], $item['user_id']);
         $folders_list = array_collection_to_list($folders_list, 'id', 'title');
     }
     // Получаем поля для данного типа контента
     $fields = $this->model->orderBy('ordering')->getContentFields($ctype['name'], $id);
     // Если этот контент можно создавать в группах (сообществах) то получаем список групп
     $groups_list = array();
     if ($ctype['is_in_groups'] || $ctype['is_in_groups_only']) {
         $groups_model = cmsCore::getModel('groups');
         $groups = $groups_model->getUserGroups($this->cms_user->id);
         if ($groups) {
             $groups_list = $ctype['is_in_groups_only'] ? array() : array('0' => '');
             $groups_list = $groups_list + array_collection_to_list($groups, 'id', 'title');
         }
     }
     // Строим форму
     $form = $this->getItemForm($ctype, $fields, 'edit', array('groups_list' => $groups_list, 'folders_list' => $folders_list), $id, $item);
     // Получаем теги
     if ($ctype['is_tags']) {
         $tags_model = cmsCore::getModel('tags');
         $item['tags'] = $tags_model->getTagsStringForTarget($this->name, $ctype['name'], $id);
     }
     list($ctype, $item) = cmsEventsManager::hook('content_edit', array($ctype, $item));
     list($form, $item) = cmsEventsManager::hook("content_{$ctype['name']}_form", array($form, $item));
     // Форма отправлена?
     $is_submitted = $this->request->has('submit');
     $item['ctype_name'] = $ctype['name'];
     $item['ctype_id'] = $ctype['id'];
     if ($ctype['props']) {
         $item_props = $this->model->getContentProps($ctype['name'], $item['category_id']);
         $item_props_fields = $this->getPropsFields($item_props);
         $item['props'] = $this->model->getPropsValues($ctype['name'], $id);
         foreach ($item_props_fields as $field) {
             $form->addField('props', $field);
         }
     }
     $is_pub_control = cmsUser::isAllowed($ctype['name'], 'pub_on');
     $is_date_pub_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_late');
     $is_date_pub_end_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_long', 'any');
     $is_date_pub_days_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_long', 'days');
     $is_date_pub_ext_allowed = $is_date_pub_days_allowed && cmsUser::isAllowed($ctype['name'], 'pub_max_ext');
     if ($is_date_pub_ext_allowed) {
         $item['pub_days'] = 0;
     }
     $add_cats = $this->model->getContentItemCategories($ctype['name'], $id);
     if ($add_cats) {
         foreach ($add_cats as $index => $cat_id) {
             if ($cat_id == $item['category_id']) {
                 unset($add_cats[$index]);
                 break;
             }
         }
     }
     if ($is_submitted) {
         // Парсим форму и получаем поля записи
         $item = array_merge($item, $form->parse($this->request, $is_submitted, $item));
         // Проверям правильность заполнения
         $errors = $form->validate($this, $item);
         if (!$errors) {
             list($item, $errors) = cmsEventsManager::hook('content_validate', array($item, $errors));
         }
         if (!$errors) {
             unset($item['ctype_name']);
             unset($item['ctype_id']);
             if (isset($item['parent_id']) && $groups_list) {
                 if (array_key_exists($item['parent_id'], $groups_list) && $item['parent_id'] > 0) {
                     $group = $groups_model->getGroup($item['parent_id']);
                     $item['parent_type'] = 'group';
                     $item['parent_title'] = $groups_list[$item['parent_id']];
                     $item['parent_url'] = href_to_rel('groups', $item['parent_id'], array('content', $ctype['name']));
                     $item['is_parent_hidden'] = $group['is_closed'] ? true : null;
                 } else {
                     $item['parent_id'] = null;
                     $item['parent_type'] = null;
                     $item['parent_title'] = null;
                     $item['parent_url'] = null;
                 }
             }
             $item['is_approved'] = $item['is_approved'] && (!$ctype['is_premod_edit'] || $is_moderator);
             $item['approved_by'] = null;
             if ($ctype['is_auto_keys']) {
                 $item['seo_keys'] = string_get_meta_keywords($item['content']);
             }
             if ($ctype['is_auto_desc']) {
                 $item['seo_desc'] = string_get_meta_description($item['content']);
             }
             if ($ctype['is_tags']) {
                 $tags_model->updateTags($item['tags'], $this->name, $ctype['name'], $id);
                 $item['tags'] = $tags_model->getTagsStringForTarget($this->name, $ctype['name'], $id);
             }
             $date_pub_time = strtotime($item['date_pub']);
             $date_pub_end_time = strtotime($item['date_pub_end']);
             $now_time = time();
             $now_date = strtotime(date('Y-m-d', $now_time));
             $is_pub = true;
             if ($is_date_pub_allowed) {
                 $time_to_pub = $date_pub_time - $now_time;
                 $is_pub = $is_pub && $time_to_pub < 0;
             }
             if ($is_date_pub_end_allowed && !empty($item['date_pub_end'])) {
                 $days_from_pub = floor(($now_date - $date_pub_end_time) / 60 / 60 / 24);
                 $is_pub = $is_pub && $days_from_pub < 1;
             } else {
                 if ($is_date_pub_ext_allowed && !$this->cms_user->is_admin) {
                     $days = $item['pub_days'];
                     $date_pub_end_time = $date_pub_end_time + 60 * 60 * 24 * $days;
                     $days_from_pub = floor(($now_date - $date_pub_end_time) / 60 / 60 / 24);
                     $is_pub = $is_pub && $days_from_pub < 1;
                     $item['date_pub_end'] = date('Y-m-d', $date_pub_end_time);
                 } else {
                     $item['date_pub_end'] = false;
                 }
             }
             unset($item['pub_days']);
             if (!$is_pub_control) {
                 unset($item['is_pub']);
             }
             if (!isset($item['is_pub']) || !empty($item['is_pub'])) {
                 $item['is_pub'] = $is_pub;
                 if (!$is_pub) {
                     cmsUser::addSessionMessage(LANG_CONTENT_IS_PUB_OFF);
                 }
             }
             if (!empty($ctype['options']['is_cats_multi'])) {
                 $add_cats = $this->request->get('add_cats', array());
                 if (is_array($add_cats)) {
                     foreach ($add_cats as $index => $cat_id) {
                         if (!is_numeric($cat_id) || !$cat_id) {
                             unset($add_cats[$index]);
                         }
                     }
                     if ($add_cats) {
                         $item['add_cats'] = $add_cats;
                     }
                 }
             }
             //
             // Сохраняем запись и редиректим на ее просмотр
             //
             $item = cmsEventsManager::hook('content_before_update', $item);
             $item = cmsEventsManager::hook("content_{$ctype['name']}_before_update", $item);
             $item = $this->model->updateContentItem($ctype, $id, $item, $fields);
             $item['ctype_data'] = $ctype;
             cmsEventsManager::hook('content_after_update', $item);
             cmsEventsManager::hook("content_{$ctype['name']}_after_update", $item);
             if ($item['is_approved'] || $is_moderator) {
                 cmsEventsManager::hook('content_after_update_approve', array('ctype_name' => $ctype['name'], 'item' => $item));
                 cmsEventsManager::hook("content_{$ctype['name']}_after_update_approve", $item);
             } else {
                 $this->requestModeration($ctype['name'], $item, false);
             }
             $back_url = $this->request->get('back', '');
             if ($back_url) {
                 $this->redirect($back_url);
             } else {
                 $this->redirectTo($ctype['name'], $item['slug'] . '.html');
             }
         }
         if ($errors) {
             cmsUser::addSessionMessage(LANG_FORM_ERRORS, 'error');
         }
     }
     return $this->cms_template->render('item_form', array('do' => 'edit', 'ctype' => $ctype, 'parent' => isset($parent) ? $parent : false, 'item' => $item, 'form' => $form, 'props' => $props, 'is_moderator' => $is_moderator, 'is_premoderation' => $is_premoderation, 'is_load_props' => false, 'add_cats' => $add_cats, 'errors' => isset($errors) ? $errors : false));
 }
コード例 #2
0
ファイル: view.tpl.php プロジェクト: Val-Git/icms2
<?php

$this->addJS($this->getJavascriptFileName('photos'));
$this->addJS($this->getJavascriptFileName('jquery-owl.carousel'));
$this->addJS($this->getJavascriptFileName('screenfull'));
$this->addCSS('templates/default/css/jquery-owl.carousel.css');
$this->setPageTitle($photo['title']);
$this->setPageDescription($photo['content'] ? string_get_meta_description($photo['content']) : $photo['title'] . ' — ' . $album['title']);
if ($ctype['options']['list_on']) {
    $this->addBreadcrumb($ctype['title'], href_to($ctype['name']));
}
if (isset($album['category'])) {
    foreach ($album['category']['path'] as $c) {
        $this->addBreadcrumb($c['title'], href_to($ctype['name'], $c['slug']));
    }
}
if ($ctype['options']['item_on']) {
    $this->addBreadcrumb($album['title'], href_to($ctype['name'], $album['slug']) . '.html');
}
$this->addBreadcrumb($photo['title']);
if ($is_can_edit) {
    $this->addToolButton(array('class' => 'edit', 'title' => LANG_PHOTOS_EDIT_PHOTO, 'href' => $this->href_to('edit', $photo['id'])));
}
if ($is_can_delete) {
    $this->addToolButton(array('class' => 'delete', 'title' => LANG_PHOTOS_DELETE_PHOTO, 'href' => 'javascript:icms.photos.delete()', 'onclick' => "if(!confirm('" . LANG_PHOTOS_DELETE_PHOTO_CONFIRM . "')){ return false; }"));
}
?>

<div id="album-photo-item" class="content_item" data-item-delete-url="<?php 
if ($is_can_delete) {
    echo $this->href_to('delete');
コード例 #3
0
ファイル: item_add.php プロジェクト: rookees/icms2
 public function run()
 {
     $user = cmsUser::getInstance();
     // Получаем название типа контента
     $ctype_name = $this->request->get('ctype_name');
     // проверяем наличие доступа
     if (!cmsUser::isAllowed($ctype_name, 'add')) {
         cmsCore::error404();
     }
     // Получаем тип контента
     $ctype = $this->model->getContentTypeByName($ctype_name);
     if (!$ctype) {
         cmsCore::error404();
     }
     // проверяем что не превышен лимит на число записей
     $user_items_count = $this->model->getUserContentItemsCount($ctype_name, $user->id, false);
     if (cmsUser::isPermittedLimitReached($ctype_name, 'limit', $user_items_count)) {
         cmsUser::addSessionMessage(sprintf(LANG_CONTENT_COUNT_LIMIT, $ctype['labels']['many']), 'error');
         $this->redirectBack();
     }
     // Проверяем ограничение по карме
     if (cmsUser::isPermittedLimitHigher($ctype_name, 'karma', $user->karma)) {
         cmsUser::addSessionMessage(sprintf(LANG_CONTENT_KARMA_LIMIT, cmsUser::getPermissionValue($ctype_name, 'karma')), 'error');
         $this->redirectBack();
     }
     $item = array();
     if ($ctype['is_cats']) {
         $category_id = $this->request->get('to_id');
     }
     // Определяем наличие полей-свойств
     $props = $this->model->getContentProps($ctype['name']);
     $ctype['props'] = $props;
     // Если этот контент можно создавать в группах (сообществах) то получаем список групп
     $groups_list = array();
     if ($ctype['is_in_groups'] || $ctype['is_in_groups_only']) {
         $groups_model = cmsCore::getModel('groups');
         $groups = $groups_model->getUserGroups($user->id);
         if (!$groups && $ctype['is_in_groups_only']) {
             cmsUser::addSessionMessage(sprintf(LANG_CONTENT_IS_IN_GROUPS_ONLY, $ctype['labels']['many']), 'error');
             $this->redirectBack();
         }
         $groups_list = $ctype['is_in_groups_only'] ? array() : array('0' => '');
         $groups_list = $groups_list + array_collection_to_list($groups, 'id', 'title');
     }
     // Если включены личные папки - получаем их список
     $folders_list = array();
     if ($ctype['is_folders']) {
         $folders_list = $this->model->getContentFolders($ctype['id'], $user->id);
         $folders_list = array_collection_to_list($folders_list, 'id', 'title');
     }
     // Получаем поля для данного типа контента
     $this->model->orderBy('ordering');
     $fields = $this->model->getContentFields($ctype['name']);
     $form = $this->getItemForm($ctype, $fields, 'add', array('groups_list' => $groups_list, 'folders_list' => $folders_list));
     // Заполняем поля значениями по-умолчанию, взятыми из профиля пользователя
     // (для тех полей, в которых это включено)
     foreach ($fields as $field) {
         if (!empty($field['options']['profile_value'])) {
             $item[$field['name']] = $user->{$field['options']['profile_value']};
         }
     }
     $is_moderator = $user->is_admin || $this->model->userIsContentTypeModerator($ctype_name, $user->id);
     $is_premoderation = $ctype['is_premod_add'];
     cmsEventsManager::hook("content_add", $ctype);
     list($form, $item) = cmsEventsManager::hook("content_{$ctype['name']}_form", array($form, $item));
     // Форма отправлена?
     $is_submitted = $this->request->has('submit');
     if (!$is_submitted && !empty($category_id)) {
         $item['category_id'] = $category_id;
     }
     if ($this->request->has('group_id') && $groups_list && !$is_submitted) {
         $item['parent_id'] = $this->request->get('group_id');
     }
     $item['ctype_name'] = $ctype['name'];
     $item['ctype_id'] = $ctype['id'];
     if ($is_submitted) {
         if ($ctype['props']) {
             $props_cat_id = $this->request->get('category_id');
             if ($props_cat_id) {
                 $item_props = $this->model->getContentProps($ctype['name'], $props_cat_id);
                 $item_props_fields = $this->getPropsFields($item_props);
                 foreach ($item_props_fields as $field) {
                     $form->addField('props', $field);
                 }
             }
         }
         // Парсим форму и получаем поля записи
         $item = array_merge($item, $form->parse($this->request, $is_submitted));
         // Проверям правильность заполнения
         $errors = $form->validate($this, $item);
         if (!$errors) {
             list($item, $errors) = cmsEventsManager::hook('content_validate', array($item, $errors));
         }
         if (!$errors) {
             unset($item['ctype_name']);
             unset($item['ctype_id']);
             $item['is_approved'] = !$ctype['is_premod_add'] || $is_moderator;
             $item['parent_type'] = null;
             $item['parent_title'] = null;
             $item['parent_url'] = null;
             $item['is_parent_hidden'] = null;
             if (isset($item['parent_id'])) {
                 if (array_key_exists($item['parent_id'], $groups_list) && $item['parent_id'] > 0) {
                     $group = $groups_model->getGroup($item['parent_id']);
                     $item['parent_type'] = 'group';
                     $item['parent_title'] = $groups_list[$item['parent_id']];
                     $item['parent_url'] = href_to_rel('groups', $item['parent_id'], array('content', $ctype_name));
                     $item['is_parent_hidden'] = $group['is_closed'] ? true : null;
                 } else {
                     $item['parent_id'] = null;
                 }
             }
             if ($ctype['is_auto_keys']) {
                 $item['seo_keys'] = string_get_meta_keywords($item['content']);
             }
             if ($ctype['is_auto_desc']) {
                 $item['seo_desc'] = string_get_meta_description($item['content']);
             }
             $is_pub_control = cmsUser::isAllowed($ctype['name'], 'pub_on');
             $is_date_pub_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_late');
             $is_date_pub_end_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_long', 'any');
             $is_date_pub_days_allowed = $ctype['is_date_range'] && cmsUser::isAllowed($ctype['name'], 'pub_long', 'days');
             $pub_max_days = intval(cmsUser::getPermissionValue($ctype['name'], 'pub_max_days'));
             $date_pub_time = isset($item['date_pub']) ? strtotime($item['date_pub']) : time();
             $now_time = strtotime(date('Y-m-d', time()));
             $is_pub = true;
             if ($is_date_pub_allowed) {
                 $days_to_pub = ceil(($date_pub_time - $now_time) / 60 / 60 / 24);
                 $is_pub = $is_pub && $days_to_pub < 1;
             }
             if ($is_date_pub_end_allowed && !empty($item['date_pub_end'])) {
                 $date_pub_end_time = strtotime($item['date_pub_end']);
                 $days_from_pub = floor(($now_time - $date_pub_end_time) / 60 / 60 / 24);
                 $is_pub = $is_pub && $days_from_pub < 1;
             } else {
                 if ($is_date_pub_days_allowed && !$user->is_admin) {
                     $days = $item['pub_days'];
                     $date_pub_end_time = $date_pub_time + 60 * 60 * 24 * $days;
                     $days_from_pub = floor(($now_time - $date_pub_end_time) / 60 / 60 / 24);
                     $is_pub = $is_pub && $days_from_pub < 1;
                     $item['date_pub_end'] = date('Y-m-d', $date_pub_end_time);
                 } else {
                     $item['date_pub_end'] = false;
                 }
             }
             unset($item['pub_days']);
             if (!$is_pub_control) {
                 unset($item['is_pub']);
             }
             if (!isset($item['is_pub'])) {
                 $item['is_pub'] = $is_pub;
             }
             if (!empty($item['is_pub'])) {
                 $item['is_pub'] = $is_pub;
             }
             if (!empty($ctype['options']['is_cats_multi'])) {
                 $add_cats = $this->request->get('add_cats');
                 if (is_array($add_cats)) {
                     foreach ($add_cats as $index => $cat_id) {
                         if (!is_numeric($cat_id) || !$cat_id) {
                             unset($add_cats[$index]);
                         }
                     }
                     if ($add_cats) {
                         $item['add_cats'] = $add_cats;
                     }
                 }
             }
             $item = cmsEventsManager::hook("content_before_add", $item);
             $item = cmsEventsManager::hook("content_{$ctype['name']}_before_add", $item);
             $item = $this->model->addContentItem($ctype, $item, $fields);
             if ($ctype['is_tags']) {
                 $tags_model = cmsCore::getModel('tags');
                 $tags_model->addTags($item['tags'], $this->name, $ctype['name'], $item['id']);
                 $item['tags'] = $tags_model->getTagsStringForTarget($this->name, $ctype['name'], $item['id']);
                 $this->model->updateContentItemTags($ctype['name'], $item['id'], $item['tags']);
             }
             cmsEventsManager::hook("content_after_add", $item);
             cmsEventsManager::hook("content_{$ctype['name']}_after_add", $item);
             if ($item['is_approved']) {
                 cmsEventsManager::hook("content_after_add_approve", array('ctype_name' => $ctype_name, 'item' => $item));
                 cmsEventsManager::hook("content_{$ctype['name']}_after_add_approve", $item);
             } else {
                 $this->requestModeration($ctype_name, $item);
             }
             $back_url = $this->request->get('back');
             if ($back_url) {
                 $this->redirect($back_url);
             } else {
                 if ($ctype['options']['item_on']) {
                     $this->redirectTo($ctype_name, $item['slug'] . '.html');
                 } else {
                     $this->redirectTo($ctype_name);
                 }
             }
         }
         if ($errors) {
             cmsUser::addSessionMessage(LANG_FORM_ERRORS, 'error');
         }
     }
     return cmsTemplate::getInstance()->render('item_form', array('do' => 'add', 'parent' => isset($parent) ? $parent : false, 'ctype' => $ctype, 'item' => $item, 'form' => $form, 'props' => $props, 'is_moderator' => $is_moderator, 'is_premoderation' => $is_premoderation, 'is_load_props' => !isset($errors), 'errors' => isset($errors) ? $errors : false));
 }
コード例 #4
0
ファイル: group_view.tpl.php プロジェクト: Val-Git/icms2
<?php

$this->setPageTitle($group['title']);
$this->setPageDescription($group['description'] ? string_get_meta_description($group['description']) : $group['title']);
$this->addBreadcrumb(LANG_GROUPS, href_to('groups'));
$this->addBreadcrumb($group['title']);
?>

<div id="group_profile_header">
    <?php 
$this->renderChild('group_header', array('group' => $group, 'content_counts' => $content_counts));
?>
</div>

<div id="group_profile">

    <div id="left_column" class="column">

		<?php 
if ($group['logo']) {
    ?>
			<div id="logo" class="block">
				<?php 
    echo html_image($group['logo'], 'normal', $group['title']);
    ?>
			</div>
		<?php 
}
?>

        <?php