* @copyright 2007-2015 Leotheme * @license http://leotheme.com - prestashop template provider */ include_once(_PS_MODULE_DIR_.'leoblog/loader.php'); require_once(_PS_MODULE_DIR_.'leoblog/classes/comment.php'); class AdminLeoblogCommentsController extends ModuleAdminController { protected $max_image_size = 1048576; protected $position_identifier = 'id_leoblog_blog'; public function __construct() { $this->bootstrap = true; $this->table = 'leoblog_comment'; $this->identifier = 'id_comment'; $this->className = 'LeoBlogComment'; $this->lang = false; $this->addRowAction('edit'); $this->addRowAction('delete'); if (Tools::getValue('id_leoblog_blog')) { # validate module $this->_where = ' AND id_leoblog_blog='.(int)Tools::getValue('id_leoblog_blog'); } parent::__construct(); $this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?'), 'icon' => 'icon-trash')); $this->fields_list = array( 'id_comment' => array('title' => $this->l('ID'), 'align' => 'center', 'class' => 'fixed-width-xs'), 'id_leoblog_blog' => array('title' => $this->l('Blog ID'), 'align' => 'center', 'class' => 'fixed-width-xs'), 'user' => array('title' => $this->l('User')), 'comment' => array('title' => $this->l('Comment')), 'date_add' => array('title' => $this->l('Date Added'),'type' => 'datetime'), 'active' => array('title' => $this->l('Displayed'), 'align' => 'center', 'active' => 'status', 'class' => 'fixed-width-sm', 'type' => 'bool', 'orderby' => false) ); } public function initPageHeaderToolbar() { $link = $this->context->link; if (Tools::getValue('id_leoblog_blog')) { $this->page_header_toolbar_btn['back-blog'] = array( 'href' => $link->getAdminLink('AdminLeoblogBlogs').'&updateleoblog_blog&id_leoblog_blog='.Tools::getValue('id_leoblog_blog'), 'desc' => $this->l('Back To The Blog'), 'icon' => 'icon-blog icon-3x process-icon-blog' ); } return parent::initPageHeaderToolbar(); } public function renderForm() { if (!$this->loadObject(true)) { if (Validate::isLoadedObject($this->object)) { $this->display = 'edit'; } else { $this->display = 'add'; } } $this->initToolbar(); $this->initPageHeaderToolbar(); $blog = new LeoBlogBlog($this->object->id_leoblog_blog, $this->context->language->id); $this->multiple_fieldsets = true; $this->object->blog_title = $blog->meta_title; $this->fields_form[0]['form'] = array( 'tinymce' => true, 'legend' => array( 'title' => $this->l('Blog Form'), 'icon' => 'icon-folder-close' ), 'input' => array( array( 'type' => 'hidden', 'label' => $this->l('Comment ID'), 'name' => 'id_comment', ), array( 'type' => 'text', 'label' => $this->l('Blog Title'), 'name' => 'blog_title', ), array( 'type' => 'text', 'label' => $this->l('User'), 'name' => 'user', ), array( 'type' => 'text', 'label' => $this->l('Email'), 'name' => 'email', ), array( 'type' => 'textarea', 'label' => $this->l('Blog Content'), 'name' => 'comment', 'rows' => 5, 'cols' => 40, 'hint' => $this->l('Invalid characters:').' <>;=#{}' ), array( 'type' => 'switch', 'label' => $this->l('Displayed:'), 'name' => 'active', 'required' => false, 'is_bool' => true, 'values' => array( array( 'id' => 'active_on', 'value' => 1, 'label' => $this->l('Enabled') ), array( 'id' => 'active_off', 'value' => 0, 'label' => $this->l('Disabled') ) ), ), ), 'submit' => array( 'title' => $this->l('Save'), 'class' => 'btn btn-default pull-right' ), 'buttons' => array( 'save_and_preview' => array( 'name' => 'saveandstay', 'type' => 'submit', 'title' => $this->l('Save and stay'), 'class' => 'btn btn-default pull-right', 'icon' => 'process-icon-save-and-stay' ) ) ); return parent::renderForm(); } public function renderList() { $this->toolbar_title = $this->l('Comments Management'); $this->toolbar_btn['new'] = null; return parent::renderList(); } public function postProcess() { if (Tools::isSubmit('saveandstay')) { parent::validateRules(); if (count($this->errors)) { return false; } if ($id_comment = (int)Tools::getValue('id_comment')) { $comment = new LeoBlogComment($id_comment); $this->copyFromPost($comment, 'comment'); if (!$comment->update()) { $this->errors[] = $this->l('An error occurred while creating an object.').' '.$this->table.' ('.Db::getInstance()->getMsgError().')'; } else { Tools::redirectAdmin(self::$currentIndex.'&'.$this->identifier.'='.Tools::getValue('id_comment').'&conf=4&update'.$this->table.'&token='.Tools::getValue('token')); } } else { $this->errors[] = $this->l('An error occurred while creating an object.').' '.$this->table.' ('.Db::getInstance()->getMsgError().')'; } } else { parent::postProcess(); } } }