Changeset 7320 for plugins/sfJobQueuePlugin
- Timestamp:
- 02/04/08 12:22:24 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfJobQueuePlugin/trunk/config/schema.yml
r7319 r7320 35 35 created_at: timestamp 36 36 37 # a sfJobQueue gathers several jobs to be run ned37 # a sfJobQueue gathers several jobs to be run 38 38 sf_job_queue: 39 39 _attributes: { phpName: sfJobQueue, package: plugins.sfJobQueuePlugin.lib.model } plugins/sfJobQueuePlugin/trunk/modules/sfJob/config/generator.yml
r7319 r7320 22 22 _edit: - 23 23 cancel: { name: Cancel job, action: cancel, icon: /sf/sf_admin/images/delete.png } 24 run: { name: Run job, action: run, icon: /sf/sf_admin/images/next.png, confirm: "Please be aware that it may take several minutes until this action will finish. If the job to be run nedis huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager." }24 run: { name: Run job, action: run, icon: /sf/sf_admin/images/next.png, confirm: "Please be aware that it may take several minutes until this action will finish. If the job to be run is huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager." } 25 25 actions: 26 26 _create: - plugins/sfJobQueuePlugin/trunk/modules/sfJob/templates/_list_td_actions.php
r7231 r7320 5 5 <li><?php echo link_to(image_tag('/sf/sf_admin/images/delete.png', array('alt' => __('Cancel job'), 'title' => __('Cancel job'))), 'sfJob/cancel?id='.$sf_job->getId()) ?></li> 6 6 <?php endif; ?> 7 <li><?php echo link_to(image_tag('/sf/sf_admin/images/next.png', array('alt' => __('Run job'), 'title' => __('Run job'), 'onclick' => "return confirm('Please be aware that it may take several minutes until this action will finish. If the job to be run nedis huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager.')")), 'sfJob/run?id='.$sf_job->getId()) ?></li>7 <li><?php echo link_to(image_tag('/sf/sf_admin/images/next.png', array('alt' => __('Run job'), 'title' => __('Run job'), 'onclick' => "return confirm('Please be aware that it may take several minutes until this action will finish. If the job to be run is huge, it may overload your webserver. In this case, you will prefer to run this job using the asynchronous job queue manager.')")), 'sfJob/run?id='.$sf_job->getId()) ?></li> 8 8 </ul> 9 9 </td>