nitra / e-commerce-site-setsbundle
此包已被废弃且不再维护。未建议替代包。
TextBlock Bundle
v1.0
2014-09-09 10:04 UTC
This package is auto-updated.
Last update: 2018-04-08 16:31:00 UTC
README
描述
输出可以与查看的商品一起购买的商品集。
该包旨在处理(输出、处理)
- 集合(Sets)- 输出商品集合(在后台管理中定义)
SetsConstroller
- indexAction - 根据选定的商品返回商品集合
- getSetProducts - 函数用于 indexAction,根据选定的商品返回商品集合
连接
要连接此模块到项目,需要添加
- composer.json
{
...
"require": {
...
"e-commerce-site/setsbundle": "1.2",
...
}
...
}
- app/AppKernel.php
<?php
//...
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
//...
public function registerBundles()
{
//...
$bundles = array(
//...
new Nitra\SetsBundle\NitraSetsBundle(),
//...
);
//...
return $bundles;
}
//...