Пример #1
0
 public function category(Request $data)
 {
     $objCategory = new category();
     $result = $objCategory->getCategory();
     //        echo "<pre>";print_r($result);die;
     if ($result) {
         return view('Admin/Views/category/category', ['category_data' => $result]);
     } else {
         return view('Admin/Views/category/category')->withErrors(['errMsg' => 'Error in Add Category.']);
     }
 }
Пример #2
0
<?php

// Includng configuration file
include 'config/config.php';
//Check user is already login or not
checkAuthentication();
$id = $_SESSION['adminid'];
$category = new category();
$categories = $category->getCategories($id);
$smarty->assign('action', 'category');
$smarty->assign('toolbar', $smarty->fetch('toolbar.tpl'));
if (isset($_GET['action']) && $_GET['action'] == 'new') {
    $smarty->assign('content', $smarty->fetch('addcategory.tpl'));
} elseif (isset($_GET['action']) && $_GET['action'] == 'edit') {
    $id = $_GET['id'];
    $categories = $category->getCategory($id);
    $smarty->assign('category', $categories);
    $smarty->assign('content', $smarty->fetch('editcategory.tpl'));
} elseif (isset($_POST['action']) && $_POST['action'] == 'add') {
    $data = $_POST;
    if ($category->addCategory($data)) {
        header('Location: ' . FRONTEND . 'category.php');
        exit;
    }
} elseif (isset($_POST['action']) && $_POST['action'] == 'update') {
    $data = $_POST;
    if ($category->updateCategory($data)) {
        header('Location: ' . FRONTEND . 'category.php');
        exit;
    }
} elseif (isset($_GET['action']) && $_GET['action'] == 'search') {