rodchyn / cron-manager-bundle
There is no license information available for the latest version (dev-master) of this package.
A cron table manager bundle for Symfony2
Package info
github.com/rodchyn/BCCCronManagerBundle
Type:symfony-bundle
pkg:composer/rodchyn/cron-manager-bundle
dev-master
2012-06-19 17:35 UTC
Requires
- php: >=5.3.3
- symfony/framework-bundle: 2.*
This package is auto-updated.
Last update: 2026-03-01 00:09:12 UTC
README
It is a bundle that provides a web interface for managing cron table.
Features:
- 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
Screenshots
Cron list
Cron form
Cron output
Installation and configuration:
Get the bundle
Add to your /deps file :
[BCCCronManagerBundle]
git=http://github.com/michelsalib/BCCCronManagerBundle.git
target=/bundles/BCC/CronManagerBundle
And make a php bin/vendors install.
Register the namespace
<?php // app/autoload.php $loader->registerNamespaces(array( 'BCC' => __DIR__.'/../vendor/bundles', // your other namespaces ));
Add BCCCronManagerBundle to your application kernel
<?php // app/AppKernel.php public function registerBundles() { return array( // ... new BCC\CronManagerBundle\BCCCronManagerBundle(), // ... ); }
Import the routing configuration
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.


