好吧,我的Symfony2项目中的Sonata Admin存在一个相当基本的问题。
我有一个“产品”列表视图,其中包含在我的网上商店销售的每件商品。在右上角的“操作”菜单中,我有默认操作,只有一个名为“添加新”的操作。
我只想在“添加新内容”旁边添加更多操作:自定义操作,例如“从所有产品中移除促销价格”或“删除所有产品评估”。
我不想进行“批处理”操作,我想要一个导致自定义数据库查询的“全局”操作。
我在文档中找到的所有内容都与批处理操作或“单行操作”有关。有办法做我想要的吗?
感谢您的帮助!
答案 0 :(得分:6)
Create and configure a custom admin extension并覆盖configureActionButtons(AdminInterface $admin, $list, $action, $object)
方法以添加自定义操作:
use Sonata\AdminBundle\Admin\AdminExtension;
use Sonata\AdminBundle\Admin\AdminInterface;
use Sonata\AdminBundle\Route\RouteCollection;
class CustomGlobalActionsExtension extends AdminExtension
{
public function configureActionButtons(AdminInterface $admin, $list, $action, $object)
{
return array_merge($list, [
['template' => 'admin/custom_action.html.twig']
]);
}
public function configureRoutes(AdminInterface $admin, RouteCollection $collection)
{
$collection->add('custom_action', $admin->getRouterIdParameter().'/custom_action');
}
}
{# app/Resources/views/admin/custom_action.html.twig #}
<a class="btn btn-sm" href="{{ admin.generateObjectUrl('custom_action', object) }}">Custom Action</a>
另见https://sonata-project.org/bundles/admin/2-3/doc/cookbook/recipe_custom_action.html
答案 1 :(得分:0)
语法有一点变化,调用父方法很重要:
/**
* @param $action
* @param null|object $object
* @return array
*/
public function configureActionButtons($action, $object = null)
{
$buttonList = parent::configureActionButtons($action, $object);
$buttonList['create_custom'] = [
'template' => 'admin/action/button.html.twig'
];
unset($buttonList['not_wanted']);
return $buttonList;
}