Merge pull request #5386 from colemanw/CRM-15706
[civicrm-core.git] / CRM / Admin / Page / JobLog.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Page for displaying list of jobs
38 */
39class CRM_Admin_Page_JobLog extends CRM_Core_Page_Basic {
40
41 /**
eceb18cc 42 * The action links that we need to display for the browse screen.
6a488035
TO
43 *
44 * @var array
6a488035
TO
45 */
46 static $_links = NULL;
47
48 /**
eceb18cc 49 * Get BAO Name.
6a488035 50 *
a6c01b45
CW
51 * @return string
52 * Classname of BAO.
6a488035 53 */
00be9182 54 public function getBAOName() {
6a488035
TO
55 return 'CRM_Core_BAO_Job';
56 }
57
58 /**
eceb18cc 59 * Get action Links.
6a488035 60 *
a6c01b45
CW
61 * @return array
62 * (reference) of action links
6a488035 63 */
00be9182 64 public function &links() {
6a488035
TO
65 return self::$_links;
66 }
67
68 /**
69 * Run the page.
70 *
71 * This method is called after the page is created. It checks for the
72 * type of action and executes that action.
73 * Finally it calls the parent's run method.
74 *
75 * @return void
6a488035 76 */
00be9182 77 public function run() {
6a488035
TO
78 // set title and breadcrumb
79 CRM_Utils_System::setTitle(ts('Settings - Scheduled Jobs Log'));
353ffa53
TO
80 $breadCrumb = array(
81 array(
82 'title' => ts('Administration'),
6a488035
TO
83 'url' => CRM_Utils_System::url('civicrm/admin',
84 'reset=1'
85 ),
389bcebf 86 ),
353ffa53 87 );
6a488035
TO
88 CRM_Utils_System::appendBreadCrumb($breadCrumb);
89 return parent::run();
90 }
91
92 /**
93 * Browse all jobs.
94 *
dd244018
EM
95 * @param null $action
96 *
6a488035 97 * @return void
6a488035 98 */
00be9182 99 public function browse($action = NULL) {
6a488035
TO
100
101 $jid = CRM_Utils_Request::retrieve('jid', 'Positive', $this);
102
103 $sj = new CRM_Core_JobManager();
104
105 $jobName = NULL;
5e99888b 106 if ($jid) {
389bcebf 107 $jobName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Job', $jid);
6a488035
TO
108 }
109
110 $this->assign('jobName', $jobName);
111
112 $dao = new CRM_Core_DAO_JobLog();
113 $dao->orderBy('id desc');
5e99888b
DL
114
115 // limit to last 1000 records
116 $dao->limit(1000);
117
118 if ($jid) {
6a488035
TO
119 $dao->job_id = $jid;
120 }
121 $dao->find();
5e99888b 122
6a488035
TO
123 $rows = array();
124 while ($dao->fetch()) {
125 unset($row);
126 CRM_Core_DAO::storeValues($dao, $row);
127 $rows[$dao->id] = $row;
128 }
129 $this->assign('rows', $rows);
130
131 $this->assign('jobId', $jid);
132 }
133
134 /**
eceb18cc 135 * Get name of edit form.
6a488035 136 *
a6c01b45
CW
137 * @return string
138 * Classname of edit form.
6a488035 139 */
00be9182 140 public function editForm() {
6a488035
TO
141 return 'CRM_Admin_Form_Job';
142 }
143
144 /**
eceb18cc 145 * Get edit form name.
6a488035 146 *
a6c01b45
CW
147 * @return string
148 * name of this page.
6a488035 149 */
00be9182 150 public function editName() {
6a488035
TO
151 return 'Scheduled Jobs';
152 }
153
154 /**
155 * Get user context.
156 *
da6b46f4
EM
157 * @param null $mode
158 *
a6c01b45
CW
159 * @return string
160 * user context.
6a488035 161 */
00be9182 162 public function userContext($mode = NULL) {
6a488035
TO
163 return 'civicrm/admin/job';
164 }
96025800 165
6a488035 166}