Merge pull request #941 from kurund/CRM-12711
[civicrm-core.git] / CRM / Case / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
31 * abstract class.
32 *
33 * @package CRM
34 * @copyright CiviCRM LLC (c) 2004-2013
35 * $Id$
36 *
37 */
38class CRM_Case_Info extends CRM_Core_Component_Info {
39
40
41 // docs inherited from interface
42 protected $keyword = 'case';
43
44 // docs inherited from interface
45 public function getInfo() {
46 return array(
47 'name' => 'CiviCase',
48 'translatedName' => ts('CiviCase'),
49 'title' => ts('CiviCase Engine'),
50 'search' => 1,
51 'showActivitiesInCore' => 0,
52 );
53 }
54
55 // docs inherited from interface
33777e4a 56 public function getPermissions($getAllUnconditionally = FALSE) {
6a488035
TO
57 return array(
58 'delete in CiviCase',
59 'administer CiviCase',
60 'access my cases and activities',
61 'access all cases and activities',
62 'add cases',
63 );
64 }
65
66 // docs inherited from interface
67 public function getUserDashboardElement() {
68 return array();
69 }
70
71 // docs inherited from interface
72 public function registerTab() {
73 return array('title' => ts('Cases'),
74 'url' => 'case',
75 'weight' => 50,
76 );
77 }
78
79 // docs inherited from interface
80 public function registerAdvancedSearchPane() {
81 return array('title' => ts('Cases'),
82 'weight' => 50,
83 );
84 }
85
86 // docs inherited from interface
87 public function getActivityTypes() {
88 return NULL;
89 }
90
91 // add shortcut to Create New
92 public function creatNewShortcut(&$shortCuts) {
93 if (CRM_Core_Permission::check('access all cases and activities') ||
94 CRM_Core_Permission::check('add cases')
95 ) {
96 $atype = CRM_Core_OptionGroup::getValue('activity_type',
97 'Open Case',
98 'name'
99 );
100 if ($atype) {
101 $shortCuts = array_merge($shortCuts, array(
102 array('path' => 'civicrm/case/add',
103 'query' => "reset=1&action=add&atype=$atype&context=standalone",
104 'ref' => 'new-case',
105 'title' => ts('Case'),
106 )));
107 }
108 }
109 }
110}
111