Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-04-00-08-28
[civicrm-core.git] / CRM / Mailing / Page / Tab.php
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 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class handle mailing and contact related functions
38 *
39 */
40 class CRM_Mailing_Page_Tab extends CRM_Contact_Page_View {
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 public $_permission = NULL;
49 public $_contactId = NULL;
50
51 /**
52 * This function is called when action is browse
53 *
54 * return null
55 * @access public
56 */
57 function browse() {
58 }
59
60 /**
61 * build all the data structures needed to build the form
62 *
63 * @return void
64 * @access public
65 */
66 function preProcess() {
67 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
68 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
69
70 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
71 $displayName = CRM_Contact_BAO_Contact::displayName($this->_contactId);
72
73 $this->assign('contactId', $this->_contactId);
74 $this->assign('displayName', $displayName);
75
76 // check logged in url permission
77 CRM_Contact_Page_View::checkUserPermission($this);
78
79 // set page title
80 CRM_Utils_System::setTitle(ts('Mailings sent to %1', array(1 => $displayName)));
81 }
82
83 /**
84 * This function is the main function that is called when the page loads,
85 * it decides the which action has to be taken for the page.
86 *
87 * return null
88 * @access public
89 */
90 function run() {
91 $this->preProcess();
92 $this->browse();
93
94 return parent::run();
95 }
96 }
97