Merge pull request #2596 from eileenmcnaughton/CRM-14299
[civicrm-core.git] / templates / CRM / Admin / Page / Job.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
232624b1 3 | CiviCRM version 4.4 |
6a488035
TO
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26{capture assign=runAllURL}{crmURL p='civicrm/admin/runjobs' q="reset=1"}{/capture}
27<div id="help">
28 {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="Managing Scheduled Jobs" resource="wiki" text="(Job parameters and command line syntax documentation...)"}
29</div>
30
31{if $action eq 1 or $action eq 2 or $action eq 8}
32 {include file="CRM/Admin/Form/Job.tpl"}
33{else}
34
35 {if $rows}
36
37 {if $action ne 1 and $action ne 2}
38 <div class="action-link">
39 <a href="{crmURL q="action=add&reset=1"}" id="newJob" class="button"><span><div class="icon add-icon"></div>{ts}Add New Scheduled Job{/ts}</span></a>
40 <a href="{crmURL p='civicrm/admin/joblog' q="reset=1"}" id="jobLog" class="button"><span><div class="icon preview-icon"></div>{ts}View Log (all jobs){/ts}</span></a>
41 </div>
42 {/if}
43
44<div id="ltype">
45 {strip}
46 {* handle enable/disable actions*}
4d17a233
CW
47 {include file="CRM/common/enableDisableApi.tpl"}
48 {include file="CRM/common/crmeditable.tpl"}
16850d34 49 <br/><table class="selector row-highlight">
6a488035
TO
50 <tr class="columnheader">
51 <th >{ts}Name (Frequency)/Description{/ts}</th>
52 <th >{ts}Command/Parameters{/ts}</th>
53 <th >{ts}Last Run{/ts}</th>
54 <th >{ts}Enabled?{/ts}</th>
55 <th ></th>
56 </tr>
57 {foreach from=$rows item=row}
4d17a233 58 <tr id="job-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
60158442 59 <td class="crm-job-name"><strong><span data-field="name">{$row.name}</span></strong> ({$row.run_frequency})<br/>
6a488035
TO
60 {$row.description}<br />
61 {ts}API Entity:{/ts} {$row.api_entity}<br/>
62 {ts}API Action:{/ts} <strong>{$row.api_action}</strong><br/>
63 </td>
64 <td class="crm-job-name">{if $row.parameters eq null}<em>{ts}no parameters{/ts}</em>{else}<pre>{$row.parameters}</pre>{/if}</td>
65 <td class="crm-job-name">{if $row.last_run eq null}never{else}{$row.last_run|crmDate:$config->dateformatDatetime}{/if}</td>
66 <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>
67 <td>{$row.action|replace:'xx':$row.id}</td>
68 </tr>
69 {/foreach}
70 </table>
71 {/strip}
72
73 {if $action ne 1 and $action ne 2}
74 <div class="action-link">
75 <a href="{crmURL q="action=add&reset=1"}" id="newJob-bottom" class="button"><span><div class="icon add-icon"></div>{ts}Add New Scheduled Job{/ts}</span></a>
76 <a href="{crmURL p='civicrm/admin/joblog' q="reset=1"}" id="jobLog-bottom" class="button"><span><div class="icon preview-icon"></div>{ts}View Log (all jobs){/ts}</span></a>
77 </div>
78 {/if}
79</div>
80{elseif $action ne 1}
81 <div class="messages status no-popup">
82 <div class="icon inform-icon"></div>
83 {ts}There are no jobs configured.{/ts}
84 </div>
85 <div class="action-link">
86 <a href="{crmURL p='civicrm/admin/job' q="action=add&reset=1"}" id="newJob-nojobs" class="button"><span><div class="icon add-icon"></div>{ts}Add New Scheduled Job{/ts}</span></a>
87 </div>
88
89{/if}
232624b1 90{/if}