示例#1
0
文件: menu.php 项目: CrazyBobik/4J
 public function genMenu(&$res, $i, $cnt)
 {
     $menu = '';
     $subMenu = '';
     $leaf = new Entity_Tree();
     $leaf->init($res[$i]);
     $next = new Entity_Tree();
     $j = $i + 1;
     if ($j <= $cnt) {
         $next->init($res[$j]);
     } else {
         return array('', $i);
     }
     if ($next->getPid() == $leaf->getId()) {
         $tmp = $this->genMenu($res, $j, $cnt);
         $subMenu = '<div class="sub-menu">' . $tmp[0] . '</div>';
         $j = $tmp[1];
     }
     $fa = $leaf->getLevel() == 2 ? $this->getMainFaClass($leaf->getName()) : $this->getFaClass($leaf->getType());
     $menu .= $this->genOnePoint($leaf, $fa, 'update-tree-leaf', $subMenu);
     $next->init($res[$j]);
     if ($next->getPid() == $leaf->getPid()) {
         $tmp = $this->genMenu($res, $j, $cnt);
         $menu .= $tmp[0];
         $j = $tmp[1];
     }
     return array($menu, $j);
 }
示例#2
0
文件: block.php 项目: CrazyBobik/4J
 /**
  * @param Entity_Tree $tree
  * @param Entity_Block $block
  * @return bool
  */
 public function updateBlock($tree, $block)
 {
     $old = new Entity_Tree();
     $old->init($this->treeDAO->getOne($tree->getId()));
     $link = rtrim($old->getLink(), $old->getName()) . $tree->getName();
     $tree->setLink($link);
     $block->setId($old->getTypeId());
     return $this->blockDAO->update($block) && $this->treeDAO->updateTree($tree);
 }
示例#3
0
文件: page.php 项目: CrazyBobik/4J
 /**
  * @param Entity_Tree $tree
  * @param Entity_Page $page
  * @return bool
  */
 public function updatePage($tree, $page)
 {
     $old = new Entity_Tree();
     $old->init($this->treeDAO->getOne($tree->getId()));
     $link = rtrim($old->getLink(), $old->getName()) . $tree->getName();
     $tree->setLink($link);
     $page->setId($old->getTypeId());
     return $this->pageDAO->update($page) && $this->treeDAO->updateTree($tree);
 }
示例#4
0
文件: tree.php 项目: CrazyBobik/4J
    /**
     * @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();
    }
示例#5
0
文件: tree.php 项目: CrazyBobik/4J
    /**
     * @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();
    }
示例#6
0
文件: page.php 项目: CrazyBobik/4J
 /**
  * @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;
 }
示例#7
0
文件: block.php 项目: CrazyBobik/4J
 /**
  * @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;
 }