Beispiel #1
0
 public function action_index($category_slug = '')
 {
     if ($category_slug != '') {
         $category = ProductCategory::bll()->findOneBy('slug', $category_slug);
         if (!$category) {
             //category not found
         }
         $this->template->title = __($category['name'] . " | Sản phẩm |");
         $total_items = ProductItem::bll()->getItemsCountByCat_Front_Listing($category['id']);
         $pagging = Pagination::factory(array('total_items' => $total_items, 'items_per_page' => 12));
         $items = ProductItem::bll()->getItemsByCat_Front_Listing($category['id'], $pagging->offset, $pagging->items_per_page);
     }
     $data['category'] = $category;
     $data['items'] = $items;
     $data['page_link'] = $pagging->render();
     $this->template->content = View::factory('/front/product/item/list', $data);
 }
Beispiel #2
0
 public function action_edit($product_id = 0)
 {
     $data = array();
     $item = ProductItem::bll()->find($product_id);
     if (!$item) {
         Message::error('Sản phẩm yêu cầu không tồn tại!');
         Request::instance()->redirect('/admin/product/index');
     }
     $category = $item->Category;
     if (!$category) {
         Request::instance()->redirect('/admin/product/index');
     }
     $data['item'] = $item->toArray();
     $data['category'] = $category;
     if (Request::$method == "POST") {
         //$item = new ProductItem();
         $post = $item->validate_update($_POST);
         if ($post->check()) {
             $post = $post->as_array();
             //die(print_r($post));
             $item->cat_id = $post['cat_id'];
             $item->name = $post['name'];
             $item->slug = $post['slug'];
             $item->summary = $post['summary'];
             $item->description = $post['description'];
             $item->meta_desc = $post['meta_desc'];
             $item->meta_keys = $post['meta_keys'];
             $item->price = $post['price'];
             $item->thumb_image = $post['thumb_image'];
             $item->full_image = $post['full_image'];
             $item->product_in_stock = $post['product_in_stock'];
             $item->product_order = $post['product_order'];
             $item->special = $post['special'];
             $item->publish = $post['publish'];
             $item->is_new = $post['is_new'];
             $item->product_sku = $post['product_sku'];
             //$item->user_id = Auth::instance()->get_user()->id;
             //$item->views = 0;
             $item->save();
             Message::success("Cập nhật thông tin sản phẩm thành công!");
             Request::instance()->redirect('/admin/product/by_cat/' . $item->cat_id);
         } else {
             $data['errors'] = $post->errors();
             $_POST = $post->as_array();
         }
     }
     //build category list
     $q = ProductCategory::bll()->createQuery();
     $q->addOrderBy('root_id asc')->addOrderBy('lft asc');
     //echo $q->getSqlQuery();
     $objects = $q->execute();
     ///$trees[0] = ' --- ROOT ---';
     foreach ($objects as $object) {
         $prefix = '|';
         if ($object['level'] == 0) {
             $prefix = null;
         }
         $trees[$object['id']] = $prefix . ' ' . str_repeat('- ', $object['level'] * 2) . $object['name'];
     }
     $data['trees'] = $trees;
     $this->template->title = __('Chỉnh sửa thông tin sản phẩm');
     $this->template->section_title = __('Chỉnh sửa thông tin sản phẩm');
     $this->template->content = View::factory('/admin/product/item/edit', $data);
 }
Beispiel #3
0
 public function action_move_down($cat_id = 0)
 {
     $category = ProductCategory::bll()->findOneBy('id', $cat_id);
     if (!$category) {
         Message::error('Không thể tìm thấy danh mục yêu cầu');
         Request::instance()->redirect('/admin/productcategory/index');
     }
     $pre = $category->getNode()->getNextSibling();
     if ($pre) {
         $category->getNode()->moveAsNextSiblingOf($pre);
     }
     Request::instance()->redirect('/admin/productcategory/index');
     //die(print_r($pre->toArray()));
 }
Beispiel #4
0
<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$cat_level_1 = ProductCategory::bll()->getAllLevelOne_Front();
//print_r(Request::instance()->param());
// get current selected category, if has sub => display them
$cat_slug = Request::instance()->param('category_slug');
$in_sub = false;
$selected_parent_slug = '';
$show_sub = '';
// neu la sub cat
if ($cat_slug != '') {
    $select_node = ProductCategory::bll()->getOneBySlug($cat_slug);
    if ($select_node) {
        $in_sub = true;
        $selected_node_id = $select_node['id'];
        if ($select_node['level'] == 1) {
            //get childs next to current
            $selected_parent_slug = $select_node['slug'];
            //$childs = $select_node->getNode()->getChildren();
            $childs = ProductCategory::getNodeChildrens($selected_node_id);
        } else {
            //get from bottom to top
            //$parents = $select_node->getNode()->getAncestors();
            $parents = ProductCategory::getSinglePath($selected_node_id);
            //print_r($parents->toArray());
            if (count($parents) >= 2) {
                $p = $parents[1];