X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContribute%2FPage%2FContributionPage.php;h=c958e280b70a3c5963389e596383e8c432b9b24b;hb=a134e6ac6ffa73e67bb7f8da277734b9bd546121;hp=d6b8588f94441a10039305d90fe86764e9398e06;hpb=2c53a8f729f160b603efc6e8f5eb03c118df6ed3;p=civicrm-core.git diff --git a/CRM/Contribute/Page/ContributionPage.php b/CRM/Contribute/Page/ContributionPage.php index d6b8588f94..c958e280b7 100644 --- a/CRM/Contribute/Page/ContributionPage.php +++ b/CRM/Contribute/Page/ContributionPage.php @@ -386,6 +386,8 @@ AND cp.page_type = 'contribute' /** * Browse all contribution pages * + * @param null $action + * * @return void * @access public * @static @@ -552,6 +554,12 @@ ORDER BY title asc $form->run(); } + /** + * @param array $params + * @param bool $sortBy + * + * @return int|string + */ function whereClause(&$params, $sortBy = TRUE) { $values = $clauses = array(); $title = $this->get('title'); @@ -612,6 +620,10 @@ ORDER BY title asc return implode(' AND ', $clauses); } + /** + * @param $whereClause + * @param $whereParams + */ function pager($whereClause, $whereParams) { $params['status'] = ts('Contribution %%StatusMessage%%'); @@ -634,6 +646,10 @@ SELECT count(id) $this->assign_by_ref('pager', $this->_pager); } + /** + * @param $whereClause + * @param $whereParams + */ function pagerAtoZ($whereClause, $whereParams) { $query = " @@ -648,6 +664,11 @@ SELECT count(id) $this->assign('aToZ', $aToZBar); } + /** + * @param $sectionsInfo + * + * @return array + */ function formatConfigureLinks($sectionsInfo) { //build the formatted configure links. $formattedConfLinks = self::configureActionLinks();