我正在使用奏鸣曲管理包来生成我的后端,我对此非常满意,我也想使用我的后端来显示统计数据。
我想我可以通过调整包的视图来做到这一点,也许是“standard_layout.html.twig”。
问题是,我找不到例子,甚至找不到人谈论它,所以我想知道,这可能吗?人们谈论它不是因为它太简单了吗?你做了吗 ?
我真的很想有一个后端,所以请赐教!
谢谢你,cpndz
我正在使用奏鸣曲管理包来生成我的后端,我对此非常满意,我也想使用我的后端来显示统计数据。
我想我可以通过调整包的视图来做到这一点,也许是“standard_layout.html.twig”。
问题是,我找不到例子,甚至找不到人谈论它,所以我想知道,这可能吗?人们谈论它不是因为它太简单了吗?你做了吗 ?
我真的很想有一个后端,所以请赐教!
谢谢你,cpndz
是的,有可能。可以使用 Sonata Block 或使用您自己的控制器来完成。
如果你使用你的控制器,你可以从默认的 CRUD 控制器重载(一个或多个)动作,渲染结果的样子取决于你。
SonataAdminBundle:CRUD
在您的管理服务定义中用您的控制器AcmeDemoAdminBundle:ProductStatisticsAdmin替换默认控制器并删除实体,因为我们将尝试在没有 CRUD 操作的情况下呈现我们的统计信息。
<service id="acme_demo_admin.product_statistics" class="Acme\Bundle\DemoAdminBundle\Admin\ProductStatisticsAdmin">
<tag name="sonata.admin" manager_type="orm" group="statistics_group" label_catalogue="admin" label="Product Statistics" />
<argument />
<argument />
<argument>AcmeDemoAdminBundle:ProductStatisticsAdmin</argument>
</service>
ProductStatisticsAdmin
在Acme/Bundle/DemoAdminBundle/Admin/ProductStatisticsAdmin.php
. _ 该类将非常简单,因为我们只需要list
操作而不需要其他 CRUD 操作。
<?php
namespace Acme\Bundle\DemoAdminBundle\Admin;
use Sonata\AdminBundle\Admin\Admin;
use Sonata\AdminBundle\Route\RouteCollection;
class ProductStatisticsAdmin extends Admin
{
protected $baseRoutePattern = 'product-statistics';
protected $baseRouteName = 'productStatistics';
protected function configureRoutes(RouteCollection $collection)
{
$collection->clearExcept(array('list'));
}
}
在Sonata 的 CRUDController中创建控制器ProductStatisticsAdminControllerAcme/Bundle/DemoAdminBundle/Controller/ProductStatisticsAdminController.php
并重载。listAction()
在此操作中,您可以调用您的数据库并检索统计信息,然后使用您的模板呈现它们。
<?php
namespace Acme\Bundle\DemoAdminBundle\Controller;
use Sonata\AdminBundle\Controller\CRUDController as Controller;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
class ProductStatisticsAdminController extends Controller
{
public function listAction()
{
if (false === $this->admin->isGranted('LIST')) {
throw new AccessDeniedException();
}
//... use any methods or services to get statistics data
$statisticsData = ...
return $this->render('AcmeDemoAdminBundle:ProductStatistics:product_statistics.html.twig', array(
'statistics_data' => $statisticsData,
));
}
}
创建模板 product_statistics.html.twig
以生成图表并显示统计信息Acme/Bundle/DemoAdminBundle/Resources/views/ProductStatistics/product_statistics.html.twig
{% extends base_template %}
{% block javascripts %}
{{ parent() }}
{# put links to javascript libraries here if you need any #}
{% endblock %}
{% block content %}
{# put some html code to display statistics data or use some javascript library to generate cool graphs #}
{% endblock %}
由于 pulzarraider 向我们解释了这样做的一种方法,我将解释另一种方法。
块捆绑的方式允许以非常强大的方式自定义仪表板。您可以同时关注Block bundle doc
1. 在 Copndz\MyBundle\Block\Service 中创建 StatisticsBlockService.php
我想通过对存储的数据进行数学运算来显示统计信息:我需要
namespace Copndz\MyBundle\Block\Service;
use Symfony\Component\HttpFoundation\Response;
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Validator\ErrorElement;
use Sonata\BlockBundle\Model\BlockInterface;
use Sonata\BlockBundle\Block\BaseBlockService;
use Doctrine\ORM\EntityManager;
class StatisticsBlockService extends BaseBlockService
{
private $em;
/**
* {@inheritdoc}
*/
public function execute(BlockInterface $block, Response $response = null)
{
$settings = array_merge($this->getDefaultSettings(), $block->getSettings());
$myentityrepository = $this->em->getRepository('CopndzMyBundle:MyEntity');
$myentity = $myentityrepository->find('5');
return $this->renderResponse('CopndzMyBundle:Block:block_statistics.html.twig', array(
'block' => $block,
'settings' => $settings,
'myentity' => $myentity,
), $response);
}
/**
* {@inheritdoc}
*/
public function validateBlock(ErrorElement $errorElement, BlockInterface $block)
{
// TODO: Implement validateBlock() method.
}
/**
* {@inheritdoc}
*/
public function buildEditForm(FormMapper $formMapper, BlockInterface $block)
{
$formMapper->add('settings', 'sonata_type_immutable_array', array(
'keys' => array(
array('content', 'textarea', array()),
)
));
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'Text (core)';
}
/**
* {@inheritdoc}
*/
public function getDefaultSettings()
{
return array(
'content' => 'Insert your custom content here',
);
}
public function __construct($name, $templating, EntityManager $entityManager)
{
parent::__construct($name, $templating);
$this->em = $entityManager;
}
}
2.在MyBundle\Ressources\config\services.yml中创建服务
sonata.block.service.statistics:
class: Copndz\MyBundle\Block\Service\StatisticsBlockService
tags:
- { name: sonata.block }
arguments:
- "sonata.block.service.statistics"
- @templating
- @doctrine.orm.entity_manager
3.在我的config.yml中将这个服务添加到sonata_block
sonata_block:
default_contexts: [cms]
blocks:
sonata.admin.block.admin_list:
contexts: [admin]
sonata.block.service.text:
sonata.block.service.rss:
sonata.block.service.statistics:
4. 在 Copndz\MyBundle\Ressources\views\Block 中创建模板 block_statistics.html.twig
{% extends sonata_block.templates.block_base %}
{% block block %}
{{ myentity.name }}
{% endblock %}
5.最后在config.yml的admin bundle配置中调用服务
sonata_admin:
dashboard:
blocks:
# display a dashboard block
- { position: left, type: sonata.admin.block.admin_list }
- { position: right, type: sonata.block.service.statistics }
实际上使用块和创建单独的页面有点不同。我认为 OP 正在尝试在奏鸣曲管理员中创建单独的页面。
创建一个控制器,在routing.yml
文件中配置它的路由,如果您希望 URL 看起来类似于 sonata admin,请设置一个与 sonata admin 的前缀相同的前缀。
渲染模板。这里有两个技巧。
首先,您需要从奏鸣曲管理员的“布局”模板扩展。如果您在 中进行了更改config.yml
,请相应地更新代码。参考
{% extends "SonataAdminBundle::standard_layout.html.twig" %}
现在你会看到奏鸣曲管理员的菜单栏和页脚已经来到这个新页面。但是菜单是空的。要显示菜单,您需要admin_pool
从控制器传递到模板。
$admin_pool = $this->get('sonata.admin.pool');
return array(
'admin_pool' => $admin_pool,
// Other variables to pass to template
);
我相信您想要实现的目标可以使用 Sonata Admin Bundle 的 Sonata Block Bundle 部分来完成。
Sonata Admin Dashboard 文档http://sonata-project.org/bundles/admin/2-1/doc/reference/dashboard.html
虽然我自己没有做过。