It is a bundle that provides a web interface for managing cron table.
- Displays cron table with time expression, command, output file, error file and comment
- Can guess last execution time and status (based on log files)
- Can display log files
- Support edit/add cron entry
- Includes shortcuts to easily get common time expression, symfony command and symfony log directory
- Translated in english, french and german
Add to your /deps
file :
[BCCCronManagerBundle]
git=http://github.com/michelsalib/BCCCronManagerBundle.git
target=/bundles/BCC/CronManagerBundle
Add to your /deps
file :
[BCCCronManagerBundle]
git=http://github.com/michelsalib/BCCCronManagerBundle.git
target=/bundles/BCC/CronManagerBundle
version=origin/2.0
And make a php bin/vendors install
.
<?php
// app/autoload.php
$loader->registerNamespaces(array(
'BCC' => __DIR__.'/../vendor/bundles',
// your other namespaces
));
<?php
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new BCC\CronManagerBundle\BCCCronManagerBundle(),
// ...
);
}
Add to your routing.yml
:
#BCCCronManager routing
BCCCronManagerBundle:
resource: "@BCCCronManagerBundle/Resources/config/routing.xml"
prefix: /cron-manager
You can customize the prefix as you wish.
Install the assets:
app/console assets:install