CRM-14727 - Fire case-change events which include Civi\CCase\Analyzer.
[civicrm-core.git] / Civi / CCase / Events.php
CommitLineData
708d8fa2
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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*/
27namespace Civi\CCase;
28
29class Events {
30 /**
31 * Following a change to an activity or case, fire the case-change event.
32 *
33 * @param \Civi\Core\Event\PostEvent $event
34 * @throws \CRM_Core_Exception
35 */
36 public static function fireCaseChange(\Civi\Core\Event\PostEvent $event) {
37 $caseId = NULL;
38 switch ($event->entity) {
39 case 'Activity':
40 if ($event->object->case_id) {
41 $caseId = $event->object->case_id;
42 }
43 break;
44 case 'Case':
45 $caseId = $event->id;
46 break;
47 default:
48 throw new \CRM_Core_Exception("CRM_Case_Listener does not support entity {$event->entity}");
49 }
50
51 if ($caseId) {
52 $analyzer = new \Civi\CCase\Analyzer($caseId);
53 \CRM_Utils_Hook::caseChange($analyzer);
54 }
55 }
56
57 /**
58 * Find any extra listeners declared in XML and pass the event along to them
59 *
60 * @param Event\CaseChangeEvent $event
61 */
62 public static function delegateToXmlListeners(\Civi\CCase\Event\CaseChangeEvent $event) {
63 $p = new \CRM_Case_XMLProcessor_Process();
64 $listeners = $p->getListeners($event->analyzer->getCaseType());
65 foreach ($listeners as $listener) {
66 /** @var $listener \Civi\CCase\CaseChangeListener */
67 $listener->onCaseChange($event);
68 }
69 }
70}