Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2014-12-30-00-43-32
[civicrm-core.git] / CRM / Admin / Page / JobLog.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Page for displaying list of jobs
38 */
39 class 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
45 * @static
46 */
47 static $_links = NULL;
48
49 /**
50 * Get BAO Name
51 *
52 * @return string Classname of BAO.
53 */
54 function getBAOName() {
55 return 'CRM_Core_BAO_Job';
56 }
57
58 /**
59 * Get action Links
60 *
61 * @return array (reference) of action links
62 */
63 function &links() {
64 return self::$_links;
65 }
66
67 /**
68 * Run the page.
69 *
70 * This method is called after the page is created. It checks for the
71 * type of action and executes that action.
72 * Finally it calls the parent's run method.
73 *
74 * @return void
75 * @access public
76 *
77 */
78 function run() {
79 // set title and breadcrumb
80 CRM_Utils_System::setTitle(ts('Settings - Scheduled Jobs Log'));
81 $breadCrumb = array(array('title' => ts('Administration'),
82 'url' => CRM_Utils_System::url('civicrm/admin',
83 'reset=1'
84 ),
85 ));
86 CRM_Utils_System::appendBreadCrumb($breadCrumb);
87 return parent::run();
88 }
89
90 /**
91 * Browse all jobs.
92 *
93 * @param null $action
94 *
95 * @return void
96 * @access public
97 * @static
98 */
99 function browse($action = NULL) {
100
101 $jid = CRM_Utils_Request::retrieve('jid', 'Positive', $this);
102
103 $sj = new CRM_Core_JobManager();
104
105 $jobName = NULL;
106 if ($jid) {
107 $jobName =
108 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Job', $jid);
109 }
110
111 $this->assign('jobName', $jobName);
112
113 $dao = new CRM_Core_DAO_JobLog();
114 $dao->orderBy('id desc');
115
116 // limit to last 1000 records
117 $dao->limit(1000);
118
119 if ($jid) {
120 $dao->job_id = $jid;
121 }
122 $dao->find();
123
124
125 $rows = array();
126 while ($dao->fetch()) {
127 unset($row);
128 CRM_Core_DAO::storeValues($dao, $row);
129 $rows[$dao->id] = $row;
130 }
131 $this->assign('rows', $rows);
132
133 $this->assign('jobId', $jid);
134 }
135
136 /**
137 * Get name of edit form
138 *
139 * @return string Classname of edit form.
140 */
141 function editForm() {
142 return 'CRM_Admin_Form_Job';
143 }
144
145 /**
146 * Get edit form name
147 *
148 * @return string name of this page.
149 */
150 function editName() {
151 return 'Scheduled Jobs';
152 }
153
154 /**
155 * Get user context.
156 *
157 * @param null $mode
158 *
159 * @return string user context.
160 */
161 function userContext($mode = NULL) {
162 return 'civicrm/admin/job';
163 }
164 }
165