dev-master
9999999-dev https://github.com/Velvel/VelvelReportBundleOnline database report generator for Symfony2
LGPL
The Requires
by r1pp3rj4ck
query doctrine2 query builder report
Online database report generator for Symfony2
The VelvelReportBundle adds support to create custom report pages for administrators about the database, also lets the administrators write their own DQL and SQL queries to fetch data they need., (*1)
Add "velvel/report-bundle": "dev-master"
to your composer.json, (*2)
``` php <?php, (*3)
// app/AppKernel.php, (*4)
public function registerBundles { return array( // ... new Velvel\ReportBundle\VelvelReportBundle(), // ... ); }, (*5)
### Add the routing ``` yml # app/config/routing.yml velvel_report: resource: "@VelvelReportBundle/Resources/config/routing.xml" prefix: /reports
Create a report file which extends the Velvel\ReportBuilder\Builder\BaseReportBuilder
:, (*6)
``` php <?php, (*7)
namespace Acme\DemoBundle\Report;, (*8)
use Velvel\ReportBundle\Builder\BaseReportBuilder; use Doctrine\ORM\QueryBuilder;, (*9)
class OrdersReport extends BaseReportBuilder { /** * Configures builder * * This method configures the ReportBuilder. It has to return * a configured Doctrine QueryBuilder. * * @param \Doctrine\ORM\QueryBuilder $queryBuilder Query builder * * @return \Doctrine\ORM\QueryBuilder */ public function configureBuilder(QueryBuilder $queryBuilder) { $queryBuilder ->select('p.name, p.price, c.checkoutDate') ->from('Cart', 'c') ->join('c.items', 'i') ->join('i.product', 'p') ->add('where', 'c.checkoutDate > :from AND c.checkoutDate < :to'); return $queryBuilder; }, (*10)
/** * Configures parameters * * This method configures parameters, which will be passed to * the QueryBuilder and the Form too, so the users (admins) can * change them. * * @return array */ public function configureParameters() { $parameters = array( 'from' => array( 'value' => new \DateTime('yesterday'), // default value 'type' => 'date', // form type 'options' => array('label' => 'From'), // form options ), 'to' => array( 'value' => new \DateTime('now'), 'type' => 'date', 'options' => array('label' => 'To'), ), ); return $parameters; } /** * Configures modifiers * * If an element in the select statement returns an object without * a __toString() method implemented, it needs a modifier to be set. * * @return array */ public function configureModifiers() { $modifiers = array( 'checkoutDate' => array( 'method' => 'format', // method to be called on the object 'params' => array('Y/m/d H:i:s'), // method parameters in an array ), ); return $modifiers; }
}, (*11)
Add your new `ReportBuilder` to your `config.yml`: ``` yaml velvel_report: reports: - { id: 'orders', name: 'Orders', class: 'Acme\DemoBundle\Report\OrdersReport' }
The id must be unique, it will be used in the routing. The name will be rendered in the reports list and the class is your report class., (*12)
You can override the show and list templates., (*13)
yaml
velvel_report:
templates:
show: 'VelvelReportBundle::show.html.twig' # this is the default show template
list: 'VelvelReportBundle::list.html.twig' # this is the default list template
, (*14)
Online database report generator for Symfony2
LGPL
query doctrine2 query builder report