Merge pull request #4913 from colemanw/INFRA-132
[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 +--------------------------------------------------------------------+
26*/
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 /**
42 * The action links that we need to display for the browse screen
43 *
44 * @var array
6a488035
TO
45 */
46 static $_links = NULL;
47
48 /**
49 * Get BAO Name
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 /**
59 * Get action Links
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 ),
353ffa53
TO
86 )
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
DL
106 if ($jid) {
107 $jobName =
108 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Job', $jid);
6a488035
TO
109 }
110
111 $this->assign('jobName', $jobName);
112
113 $dao = new CRM_Core_DAO_JobLog();
114 $dao->orderBy('id desc');
5e99888b
DL
115
116 // limit to last 1000 records
117 $dao->limit(1000);
118
119 if ($jid) {
6a488035
TO
120 $dao->job_id = $jid;
121 }
122 $dao->find();
5e99888b 123
6a488035
TO
124 $rows = array();
125 while ($dao->fetch()) {
126 unset($row);
127 CRM_Core_DAO::storeValues($dao, $row);
128 $rows[$dao->id] = $row;
129 }
130 $this->assign('rows', $rows);
131
132 $this->assign('jobId', $jid);
133 }
134
135 /**
136 * Get name of edit form
137 *
a6c01b45
CW
138 * @return string
139 * Classname of edit form.
6a488035 140 */
00be9182 141 public function editForm() {
6a488035
TO
142 return 'CRM_Admin_Form_Job';
143 }
144
145 /**
146 * Get edit form name
147 *
a6c01b45
CW
148 * @return string
149 * name of this page.
6a488035 150 */
00be9182 151 public function editName() {
6a488035
TO
152 return 'Scheduled Jobs';
153 }
154
155 /**
156 * Get user context.
157 *
da6b46f4
EM
158 * @param null $mode
159 *
a6c01b45
CW
160 * @return string
161 * user context.
6a488035 162 */
00be9182 163 public function userContext($mode = NULL) {
6a488035
TO
164 return 'civicrm/admin/job';
165 }
166}