X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContribute%2FPage%2FTab.php;h=12a8f68c06d6c65d6116c8a2734b15d996aa5ded;hb=3cb25298dcfaebdf396395e2180747c5c4d71cf9;hp=8dbc16a80ae8c39aefba1986fcf1ee97eb6ab113;hpb=3b16a28270778af5122d850f6a4ee7400b8f9920;p=civicrm-core.git diff --git a/CRM/Contribute/Page/Tab.php b/CRM/Contribute/Page/Tab.php index 8dbc16a80a..12a8f68c06 100644 --- a/CRM/Contribute/Page/Tab.php +++ b/CRM/Contribute/Page/Tab.php @@ -1,7 +1,7 @@ array( @@ -84,13 +82,14 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { if ($recurID) { $paymentProcessorObj = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($recurID, 'recur', 'obj'); - if (is_object( $paymentProcessorObj) && $paymentProcessorObj->isSupported('cancelSubscription')) { + if (is_object($paymentProcessorObj) && $paymentProcessorObj->isSupported('cancelSubscription')) { unset(self::$_links[CRM_Core_Action::DISABLE]['extra'], self::$_links[CRM_Core_Action::DISABLE]['ref']); self::$_links[CRM_Core_Action::DISABLE]['url'] = "civicrm/contribute/unsubscribe"; self::$_links[CRM_Core_Action::DISABLE]['qs'] = "reset=1&crid=%%crid%%&cid=%%cid%%&context={$context}"; } - if (is_object( $paymentProcessorObj) && $paymentProcessorObj->isSupported('updateSubscriptionBillingInfo')) { - self::$_links[CRM_Core_Action::RENEW] = array('name' => ts('Change Billing Details'), + if (is_object($paymentProcessorObj) && $paymentProcessorObj->isSupported('updateSubscriptionBillingInfo')) { + self::$_links[CRM_Core_Action::RENEW] = array( + 'name' => ts('Change Billing Details'), 'title' => ts('Change Billing Details'), 'url' => 'civicrm/contribute/updatebilling', 'qs' => "reset=1&crid=%%crid%%&cid=%%cid%%&context={$context}", @@ -103,18 +102,16 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { // end function /** - * This function is called when action is browse + * called when action is browse * - * return null - * @access public */ - function browse() { + public function browse() { // add annual contribution $annual = array(); list($annual['count'], $annual['amount'], $annual['avg'] - ) = CRM_Contribute_BAO_Contribution::annual($this->_contactId); + ) = CRM_Contribute_BAO_Contribution::annual($this->_contactId); $this->assign('annual', $annual); $controller = new CRM_Core_Controller_Simple( @@ -185,7 +182,7 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { list($softCreditTotals['amount'], $softCreditTotals['avg'], $softCreditTotals['currency'] - ) = CRM_Contribute_BAO_ContributionSoft::getSoftContributionTotals($this->_contactId, $isTest); + ) = CRM_Contribute_BAO_ContributionSoft::getSoftContributionTotals($this->_contactId, $isTest); $this->assign('softCredit', TRUE); $this->assign('softCreditRows', $softCreditList); @@ -200,12 +197,11 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { } /** - * This function is called when action is view + * called when action is view * - * return null - * @access public + * @return null */ - function view() { + public function view() { $controller = new CRM_Core_Controller_Simple( 'CRM_Contribute_Form_ContributionView', ts('View Contribution'), @@ -219,12 +215,11 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { } /** - * This function is called when action is update or new + * called when action is update or new * - * return null - * @access public + * @return null */ - function edit() { + public function edit() { // set https for offline cc transaction $mode = CRM_Utils_Request::retrieve('mode', 'String', $this); if ($mode == 'test' || $mode == 'live') { @@ -243,10 +238,10 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { return $controller->run(); } - function preProcess() { - $context = CRM_Utils_Request::retrieve('context', 'String', $this); + public function preProcess() { + $context = CRM_Utils_Request::retrieve('context', 'String', $this); $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse'); - $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this); + $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this); if ($context == 'standalone') { $this->_action = CRM_Core_Action::ADD; @@ -254,7 +249,10 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { else { $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, empty($this->_id)); if (empty($this->_contactId)) { - $this->_contactId = civicrm_api3('contribution', 'getvalue', array('id' => $this->_id, 'return' => 'contact_id')); + $this->_contactId = civicrm_api3('contribution', 'getvalue', array( + 'id' => $this->_id, + 'return' => 'contact_id', + )); } $this->assign('contactId', $this->_contactId); @@ -271,13 +269,12 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { } /** - * This function is the main function that is called when the page + * the main function that is called when the page * loads, it decides the which action has to be taken for the page. * - * return null - * @access public + * @return null */ - function run() { + public function run() { $this->preProcess(); // check if we can process credit card contribs @@ -298,7 +295,7 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { return parent::run(); } - function setContext() { + public function setContext() { $qfKey = CRM_Utils_Request::retrieve('key', 'String', $this); $context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search' @@ -357,7 +354,7 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { if ($context == 'advanced') { $url = CRM_Utils_System::url('civicrm/contact/search/advanced', $extraParams); } - else if ($searchContext) { + elseif ($searchContext) { $url = CRM_Utils_System::url("civicrm/$searchContext/search", $extraParams); } else { @@ -435,7 +432,7 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { break; case 'fulltext': - $keyName = '&qfKey'; + $keyName = '&qfKey'; $urlParams = 'force=1'; $urlString = 'civicrm/contact/search/custom'; if ($this->_action == CRM_Core_Action::UPDATE) { @@ -468,4 +465,3 @@ class CRM_Contribute_Page_Tab extends CRM_Core_Page { $session->pushUserContext($url); } } -