opencart3前台分页类的使用思路

//获得文章个数。
			$product_total=$this->model_catalog_information2category->getTotalInformations("where category_id in (".$category_id.")");//1,2,3,4,5格式,方便后期扩展
			//echo $product_total;

			
//获得当前多少页
			if (isset($this->request->get['page'])) {
				$page = (int)$this->request->get['page'];
			} else {
				$page = 1;
			}
//定义一页显示记录数
			$limit=2;
//拼装url其他参数,比如文章的分类,这些是分页和搜索的条件。
			$url = '';
			if (isset($this->request->get['category_id'])) {
				$url .= '&category_id=' . $this->request->get['category_id'];
			}
//实例化分页类
			//测试分页
			$pagination = new Pagination();
			$pagination->total = $product_total;
			$pagination->page = $page;
			$pagination->limit = $limit;
			$pagination->url = $this->url->link('information2/category', 'path=' . $this->request->get['path'] . $url . '&page={page}');
//这个是在视图中调用的,直接输出分页样式和对应的分页链接。
			$data['pagination'] = $pagination->render();

			$data['results'] = sprintf($this->language->get('text_pagination'), ($product_total) ? (($page - 1) * $limit) + 1 : 0, ((($page - 1) * $limit) > ($product_total - $limit)) ? $product_total : ((($page - 1) * $limit) + $limit), $product_total, ceil($product_total / $limit));

//内容还是要输出显示的。	
			$start=($page-1)*$limit;
			//得到文章列表
			$arrlist=$this->model_catalog_information2category->getInformations(array("start"=>$start,"limit"=>$limit)," and i.category_id=".$category_id);
			//print_r($arrlist);
			$data['arrlist']=$arrlist;
//渲染模板
			$this->response->setOutput($this->load->view('information2/category', $data));

视图中:分页使用格式参考:

{% for v in arrlist %}
{{v.title}}<br/>
{% endfor %}
{{pagination}}{{results}}


关注公众号,了解更多it技术(it问答网

opencart3.0后台怎么添加功能菜单

一:设置语言包变量

找到对应 1、admin\language 下的语言包文件夹,以 zh-cn 为例。

admin\language\zh-cn\common\column_left.php

追加如下:

//xuduowei 微信:weilanweb
$_['text_news'] = '新闻';  //新添加的菜单名称
$_['text_news_category'] = '新闻分类';
$_['text_news_infos'] = '新闻文章';

二、设置调用控制器

admin\controller\common\column_left.php

在需要插入目录的地方插入如下代码:

//xdw b 2019/1/10
$news = array();
//新闻分类
if ($this->user->hasPermission('access', 'catalog/category')) {
	$news[] = array(
		'name'	   => $this->language->get('text_news_category'),
		'href'     => $this->url->link('catalog/category', 'user_token=' . $this->session->data['user_token']),
		'children' => array()
	);
}


//新闻文章
if ($this->user->hasPermission('access', 'catalog/information')) {
	$news[] = array(
		'name'	   => $this->language->get('text_news_infos'),
		'href'     => $this->url->link('catalog/information', 'user_token=' . $this->session->data['user_token']),
		'children' => array()
	);
}

if ($news) {
	$data['menus'][] = array(
		'id'       => 'menu-blog',
		'icon'	   => 'fa fa-book fw',
		'name'	   => $this->language->get('text_news'),
		'href'     => '',
		'children' => $news
	);
}
//xdw end 2019/1/10

最终效果:

实际具体的新闻分类,新闻文章功能略。


关注公众号,了解更多it技术(it问答网

opencart根据产品模型号、尺码进行产品上下架操作。

整体下架:

update product  set quantity=0 where model=”model号”;

根据相应的产品模型号和尺码进行操作:

$sql=” update product_option_value set quantity=0,subtract=1 where  product_id=(select product_id from product where model='”.$model.”‘)  and option_value_id=(select option_value_id from option_value_description where name='”.$size.”‘)”;


关注公众号,了解更多it技术(it问答网