Fixed structure for administrative pages
[civicrm-core.git] / templates / CRM / Admin / Page / Job.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
6a488035 4 +--------------------------------------------------------------------+
2a73d3b0 5 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
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}
f6eedce7 27<div class="help">
6a488035
TO
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
036aa39d
MR
35<div class="crm-content-block crm-block">
36{if $rows}
6a488035
TO
37
38 {if $action ne 1 and $action ne 2}
39 <div class="action-link">
80bc2820
AH
40 {crmButton q="action=add&reset=1" id="newJob" icon="plus-circle"}{ts}Add New Scheduled Job{/ts}{/crmButton}
41 {crmButton p='civicrm/admin/joblog' q="reset=1" id="jobLog" icon="list-alt"}{ts}View Log (all jobs){/ts}{/crmButton}
6a488035
TO
42 </div>
43 {/if}
44
45<div id="ltype">
46 {strip}
47 {* handle enable/disable actions*}
4d17a233 48 {include file="CRM/common/enableDisableApi.tpl"}
036aa39d 49 <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">
a2c70872
AH
75 {crmButton q="action=add&reset=1" id="newJob-bottom" icon="plus-circle"}{ts}Add New Scheduled Job{/ts}{/crmButton}
76 {crmButton p='civicrm/admin/joblog' q="reset=1" id="jobLog-bottom" icon="list-alt"}{ts}View Log (all jobs){/ts}{/crmButton}
6a488035
TO
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">
a2c70872 86 <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
87 </div>
88
89{/if}
036aa39d 90</div>
232624b1 91{/if}