/** * @param Entity_Tree $leaf * @param string $fa * @param string $clazz * @return string */ private function genOnePoint(&$leaf, $fa = '', $clazz = '', $subMenu = '', $panel = true) { $toggle = '<div class="toggle-sub-menu float-right"><i class="fa fa-chevron-down"></i></div>'; $toReplace = array('{class}', '{id}', '{type}', '{faIcon}', '{title}', '{toggle}', '{subMenu}', '{panel}'); $replace = array($clazz, $leaf->getId(), $leaf->getType(), $fa, $leaf->getTitle(), $subMenu === '' ? '' : $toggle, $subMenu, $panel ? file_get_contents($this->views . '/panel.tpl') : ''); $file = file_get_contents($this->views . '/one-item.tpl'); return str_replace($toReplace, $replace, $file); }
/** * @param Entity_Tree $tree * @return bool */ public function updateTree($tree) { $id = $tree->getId(); $title = $tree->getTitle(); $name = $tree->getName(); $link = $tree->getLink(); $stmt = $this->DB->prepare('UPDATE `site_tree` SET `title`=:title, `name`=:name, `link`=:link WHERE `id`=:id'); $stmt->bindParam(':id', $id); $stmt->bindParam(':title', $title); $stmt->bindParam(':name', $name); $stmt->bindParam(':link', $link); return $stmt->execute(); }
/** * @param Entity_Tree $tree * @return mixed */ public function addTree($tree) { $rk = $tree->getRightKey(); $lev = $tree->getLevel(); $tit = $tree->getTitle(); $nam = $tree->getName(); $link = $tree->getLink(); $typ = $tree->getType(); $tid = $tree->getTypeId(); $pid = $tree->getPid(); $stmt = $this->DB->prepare('UPDATE `site_tree` SET `right_key` = `right_key` + 2, `left_key` = IF(`left_key` > :right_key, `left_key` + 2, `left_key`) WHERE `right_key` >= :right_key'); $stmt->bindParam(':right_key', $rk); $stmt->execute(); $stmt = $this->DB->prepare('INSERT INTO `site_tree` SET `left_key` = :right_key, `right_key` = :right_key + 1, `level` = :level + 1, `title`=:title, `name`=:name, `link`=:link, `type`=:type, `type_id`=:type_id, `pid`=:pid'); $stmt->bindParam(':right_key', $rk); $stmt->bindParam(':level', $lev); $stmt->bindParam(':title', $tit); $stmt->bindParam(':name', $nam); $stmt->bindParam(':link', $link); $stmt->bindParam(':type', $typ); $stmt->bindParam(':type_id', $tid); $stmt->bindParam(':pid', $pid); $stmt->execute(); return $this->DB->lastInsertId(); }
/** * @param array $data * @return bool */ public function updatePage($data = array()) { $tree = new Entity_Tree(); $tree->setId($this->isAjax() ? strip_tags($_POST['id']) : $data['id']); $tree->setTitle($this->isAjax() ? strip_tags($_POST['title']) : $data['tree_title']); $tree->setName($this->isAjax() ? strip_tags($_POST['name']) : $data['tree_name']); $id = $tree->getId(); $title = $tree->getTitle(); $name = $tree->getName(); $validator = new Libs_Validator(array('title' => 'Титулка', 'name' => 'Имя', 'pid' => 'Ид родителя')); $data = array('title' => $title, 'name' => $name, 'id' => $id); $valid = array('title' => array('required' => true), 'name' => array('required' => true), 'id' => array('required' => true)); if (!$validator->isValid($data, $valid)) { if ($this->isAjax()) { $json = array('error' => true, 'mess' => $validator->getErrors()); $this->putJSON($json); } return $validator->getErrors(); } $entity = new Entity_Page(); $entity->setSeoTitle($this->isAjax() ? strip_tags($_POST['seo_title']) : $data['seo_title']); $entity->setSeoKeywords($this->isAjax() ? strip_tags($_POST['seo_keywords']) : $data['seo_keywords']); $entity->setSeoDescription($this->isAjax() ? strip_tags($_POST['seo_description']) : $data['seo_description']); $id = $this->pageModel->updatePage($tree, $entity); if ($this->isAjax()) { $json = array(); if ($id) { $json['error'] = false; $json['mess'] = 'Обновлено'; $json['clear'] = false; $json['callback'] = 'function callback(){reloadMenu();}'; } else { $json['error'] = true; $json['mess'] = 'Ошибка'; } $this->putJSON($json); } return $id; }
/** * @param array $data * @return bool */ public function updateBlock($data = array()) { $tree = new Entity_Tree(); $tree->setId($this->isAjax() ? strip_tags($_POST['id']) : $data['id']); $tree->setTitle($this->isAjax() ? strip_tags($_POST['title']) : $data['tree_title']); $tree->setName($this->isAjax() ? strip_tags($_POST['name']) : $data['tree_name']); $id = $tree->getId(); $title = $tree->getTitle(); $name = $tree->getName(); $validator = new Libs_Validator(array('title' => 'Титулка', 'name' => 'Имя', 'pid' => 'Ид родителя')); $data = array('title' => $title, 'name' => $name, 'id' => $id); $valid = array('title' => array('required' => true), 'name' => array('required' => true), 'id' => array('required' => true)); if (!$validator->isValid($data, $valid)) { if ($this->isAjax()) { $json = array('error' => true, 'mess' => $validator->getErrors()); $this->putJSON($json); } return $validator->getErrors(); } $entity = new Entity_Block(); $entity->setSide($this->isAjax() ? strip_tags($_POST['block_side']) : $data['block_side']); $entity->setText($this->isAjax() ? strip_tags($_POST['block_text']) : $data['block_text']); $entity->setIsText($this->isAjax() ? strip_tags($_POST['block_is_text']) : $data['block_is_text']); $result = $this->blockModel->updateBlock($tree, $entity); if ($this->isAjax()) { $json = array(); if ($result) { $json['error'] = false; $json['mess'] = 'Обновлено'; $json['clear'] = false; $json['callback'] = 'function callback(){reloadMenu();}'; } else { $json['error'] = true; $json['mess'] = 'Ошибка'; } $this->putJSON($json); } return $result; }