Merge pull request #15316 from mepps/order-campaign-dashboard
[civicrm-core.git] / templates / CRM / Admin / Page / Job.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
1188c7a8 3 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 4 | |
1188c7a8
TO
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
6a488035
TO
8 +--------------------------------------------------------------------+
9*}
10{capture assign=runAllURL}{crmURL p='civicrm/admin/runjobs' q="reset=1"}{/capture}
f6eedce7 11<div class="help">
d6c3ca0f 12 {ts 1=$runAllURL}You can configure scheduled jobs (cron tasks) for your CiviCRM installation. For most sites, your system administrator should set up one or more 'cron' tasks to run the enabled jobs. However, you can also <a href="%1">run all scheduled jobs manually</a>, or run specific jobs from this screen (click 'more' and then 'Execute Now').{/ts} {docURL page="sysadmin/setup/jobs" text="(Job parameters and command line syntax documentation...)"}
6a488035
TO
13</div>
14
15{if $action eq 1 or $action eq 2 or $action eq 8}
16 {include file="CRM/Admin/Form/Job.tpl"}
17{else}
18
036aa39d
MR
19<div class="crm-content-block crm-block">
20{if $rows}
6a488035
TO
21
22 {if $action ne 1 and $action ne 2}
23 <div class="action-link">
80bc2820
AH
24 {crmButton q="action=add&reset=1" id="newJob" icon="plus-circle"}{ts}Add New Scheduled Job{/ts}{/crmButton}
25 {crmButton p='civicrm/admin/joblog' q="reset=1" id="jobLog" icon="list-alt"}{ts}View Log (all jobs){/ts}{/crmButton}
6a488035
TO
26 </div>
27 {/if}
28
29<div id="ltype">
30 {strip}
31 {* handle enable/disable actions*}
4d17a233 32 {include file="CRM/common/enableDisableApi.tpl"}
036aa39d 33 <table class="selector row-highlight">
6a488035
TO
34 <tr class="columnheader">
35 <th >{ts}Name (Frequency)/Description{/ts}</th>
36 <th >{ts}Command/Parameters{/ts}</th>
37 <th >{ts}Last Run{/ts}</th>
38 <th >{ts}Enabled?{/ts}</th>
39 <th ></th>
40 </tr>
41 {foreach from=$rows item=row}
4d17a233 42 <tr id="job-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
60158442 43 <td class="crm-job-name"><strong><span data-field="name">{$row.name}</span></strong> ({$row.run_frequency})<br/>
6a488035
TO
44 {$row.description}<br />
45 {ts}API Entity:{/ts} {$row.api_entity}<br/>
46 {ts}API Action:{/ts} <strong>{$row.api_action}</strong><br/>
47 </td>
48 <td class="crm-job-name">{if $row.parameters eq null}<em>{ts}no parameters{/ts}</em>{else}<pre>{$row.parameters}</pre>{/if}</td>
49 <td class="crm-job-name">{if $row.last_run eq null}never{else}{$row.last_run|crmDate:$config->dateformatDatetime}{/if}</td>
50 <td id="row_{$row.id}_status" class="crm-job-is_active">{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
51 <td>{$row.action|replace:'xx':$row.id}</td>
52 </tr>
53 {/foreach}
54 </table>
55 {/strip}
56
57 {if $action ne 1 and $action ne 2}
58 <div class="action-link">
a2c70872
AH
59 {crmButton q="action=add&reset=1" id="newJob-bottom" icon="plus-circle"}{ts}Add New Scheduled Job{/ts}{/crmButton}
60 {crmButton p='civicrm/admin/joblog' q="reset=1" id="jobLog-bottom" icon="list-alt"}{ts}View Log (all jobs){/ts}{/crmButton}
6a488035
TO
61 </div>
62 {/if}
63</div>
64{elseif $action ne 1}
65 <div class="messages status no-popup">
66 <div class="icon inform-icon"></div>
67 {ts}There are no jobs configured.{/ts}
68 </div>
69 <div class="action-link">
a2c70872 70 <a href="{crmURL p='civicrm/admin/job' q="action=add&reset=1"}" id="newJob-nojobs" class="button"><span><i class="crm-i fa-plus-circle"></i> {ts}Add New Scheduled Job{/ts}</span></a>
6a488035
TO
71 </div>
72
73{/if}
036aa39d 74</div>
232624b1 75{/if}