本文整理汇总了PHP中category::getCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP category::getCategory方法的具体用法?PHP category::getCategory怎么用?PHP category::getCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类category
的用法示例。
在下文中一共展示了category::getCategory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: category
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: category
<?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') {