This bundle integrates the shapecode/cron-bundle
into sonata admin.
Installing this bundle can be done through these simple steps:
Add the bundle to your project through composer:
composer require shapecode/cron-sonata-admin-bundle
Add the bundle to your application kernel:
<?php
// application/ApplicationKernel.php
public function registerBundles()
{
// ...
$bundles = array(
// ...
new Shapecode\Bundle\CronSonataAdminBundle\ShapecodeCronSonataAdminBundle(),
);
// ...
return $bundles;
}
Just go in the admin area and manage crons.