CRM-16415 Replacing plus-circle icon
[civicrm-core.git] / templates / CRM / Admin / Page / Job.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
6a488035 4 +--------------------------------------------------------------------+
e7112fa7 5 | Copyright CiviCRM LLC (c) 2004-2015 |
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}
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">
80bc2820
AH
39 {crmButton q="action=add&reset=1" id="newJob" icon="plus-circle"}{ts}Add New Scheduled Job{/ts}{/crmButton}
40 {crmButton p='civicrm/admin/joblog' q="reset=1" id="jobLog" icon="list-alt"}{ts}View Log (all jobs){/ts}{/crmButton}
6a488035
TO
41 </div>
42 {/if}
43
44<div id="ltype">
45 {strip}
46 {* handle enable/disable actions*}
4d17a233 47 {include file="CRM/common/enableDisableApi.tpl"}
16850d34 48 <br/><table class="selector row-highlight">
6a488035
TO
49 <tr class="columnheader">
50 <th >{ts}Name (Frequency)/Description{/ts}</th>
51 <th >{ts}Command/Parameters{/ts}</th>
52 <th >{ts}Last Run{/ts}</th>
53 <th >{ts}Enabled?{/ts}</th>
54 <th ></th>
55 </tr>
56 {foreach from=$rows item=row}
4d17a233 57 <tr id="job-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
60158442 58 <td class="crm-job-name"><strong><span data-field="name">{$row.name}</span></strong> ({$row.run_frequency})<br/>
6a488035
TO
59 {$row.description}<br />
60 {ts}API Entity:{/ts} {$row.api_entity}<br/>
61 {ts}API Action:{/ts} <strong>{$row.api_action}</strong><br/>
62 </td>
63 <td class="crm-job-name">{if $row.parameters eq null}<em>{ts}no parameters{/ts}</em>{else}<pre>{$row.parameters}</pre>{/if}</td>
64 <td class="crm-job-name">{if $row.last_run eq null}never{else}{$row.last_run|crmDate:$config->dateformatDatetime}{/if}</td>
65 <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>
66 <td>{$row.action|replace:'xx':$row.id}</td>
67 </tr>
68 {/foreach}
69 </table>
70 {/strip}
71
72 {if $action ne 1 and $action ne 2}
73 <div class="action-link">
a2c70872
AH
74 {crmButton q="action=add&reset=1" id="newJob-bottom" icon="plus-circle"}{ts}Add New Scheduled Job{/ts}{/crmButton}
75 {crmButton p='civicrm/admin/joblog' q="reset=1" id="jobLog-bottom" icon="list-alt"}{ts}View Log (all jobs){/ts}{/crmButton}
6a488035
TO
76 </div>
77 {/if}
78</div>
79{elseif $action ne 1}
80 <div class="messages status no-popup">
81 <div class="icon inform-icon"></div>
82 {ts}There are no jobs configured.{/ts}
83 </div>
84 <div class="action-link">
a2c70872 85 <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
86 </div>
87
88{/if}
232624b1 89{/if}