Merge pull request #4896 from totten/master-movedep
[civicrm-core.git] / CRM / Mailing / Page / Tab.php
CommitLineData
2ede60ec
DL
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
2ede60ec 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
2ede60ec
DL
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
2ede60ec
DL
32 * $Id$
33 *
34 */
35
36/**
37 * This class handle mailing and contact related functions
38 *
39 */
40class 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 /**
dc195289 52 * called when action is browse
2ede60ec
DL
53 *
54 * return null
2ede60ec 55 */
00be9182 56 public function browse() {
2ede60ec
DL
57 }
58
59 /**
100fef9d 60 * Build all the data structures needed to build the form
2ede60ec
DL
61 *
62 * @return void
2ede60ec 63 */
00be9182 64 public function preProcess() {
2ede60ec 65 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
353ffa53 66 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
2ede60ec
DL
67
68 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
69 $displayName = CRM_Contact_BAO_Contact::displayName($this->_contactId);
70
71 $this->assign('contactId', $this->_contactId);
72 $this->assign('displayName', $displayName);
73
74 // check logged in url permission
75 CRM_Contact_Page_View::checkUserPermission($this);
76
77 // set page title
0161a899 78 CRM_Utils_System::setTitle(ts('Mailings sent to %1', array(1 => $displayName)));
2ede60ec
DL
79 }
80
81 /**
dc195289 82 * the main function that is called when the page loads,
2ede60ec
DL
83 * it decides the which action has to be taken for the page.
84 *
85 * return null
2ede60ec 86 */
00be9182 87 public function run() {
2ede60ec
DL
88 $this->preProcess();
89 $this->browse();
90
91 return parent::run();
92 }
93}