Merge pull request #2223 from lcdservices/CRM-13995
[civicrm-core.git] / CRM / Case / Page / CaseDetails.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35class CRM_Case_Page_CaseDetails extends CRM_Core_Page {
36
37 /**
38 * This function is the main function that is called when the page loads,
39 * it decides the which action has to be taken for the page.
40 *
41 * return null
42 * @access public
43 */
44 function run() {
45 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
46 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
47 $type = CRM_Utils_Request::retrieve('type', 'String', CRM_Core_DAO::$_nullObject);
48
49 $this->assign('action', $this->_action);
50 $this->assign('context', $this->_context);
51
52 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
53
54 $caseId = CRM_Utils_Request::retrieve('caseId', 'Positive', $this);
55
56 CRM_Case_Page_Tab::setContext();
57
58 $params = array('date_range' => 0);
59
60 $caseDetails = array();
61 if (CRM_Case_BAO_Case::accessCiviCase()) {
62 $caseDetails = CRM_Case_BAO_Case::getCaseActivity($caseId, $params, $this->_contactId, NULL, NULL, $type);
63 }
64
65 $this->assign('rows', $caseDetails);
66 $this->assign('caseId', $caseId);
67 $this->assign('contactId', $this->_contactId);
68
fee6dcc8
CW
69 // Make it easy to refresh this table
70 $params = array(
71 'caseId' => $caseId,
72 'type' => $type,
73 'context' => $this->_context,
74 'cid' => $this->_contactId,
75 'action' => $this->_action,
76 'snippet' => 4,
77 );
78 $this->assign('data_params', json_encode($params));
79
6a488035
TO
80 return parent::run();
81 }
82}
83