@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | * @param string $user_login Username |
| 175 | 175 | * @param string $user_pass Password |
| 176 | 176 | * |
| 177 | - * @return bool |
|
| 177 | + * @return false|null |
|
| 178 | 178 | */ |
| 179 | 179 | function give_log_user_in( $user_id, $user_login, $user_pass ) { |
| 180 | 180 | |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * |
| 216 | 216 | * @param array $data Data sent from the register form |
| 217 | 217 | * |
| 218 | - * @return bool |
|
| 218 | + * @return false|null |
|
| 219 | 219 | */ |
| 220 | 220 | function give_process_register_form( $data ) { |
| 221 | 221 | |
@@ -217,7 +217,6 @@ |
||
| 217 | 217 | /** |
| 218 | 218 | * Set Donation Amount for Multi Level Donation Forms |
| 219 | 219 | * |
| 220 | - * @param int $form_id |
|
| 221 | 220 | * @param object $form |
| 222 | 221 | * |
| 223 | 222 | * @since 1.8.9 |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | * @param $end_date string|bool The end date for which we'd like to filter our sale stats. If false, we'll use the default end date of `this_month` |
| 37 | 37 | * @param $status string|array The sale status(es) to count. Only valid when retrieving global stats |
| 38 | 38 | * |
| 39 | - * @return float|int Total amount of donations based on the passed arguments. |
|
| 39 | + * @return string Total amount of donations based on the passed arguments. |
|
| 40 | 40 | */ |
| 41 | 41 | public function get_sales( $form_id = 0, $start_date = false, $end_date = false, $status = 'publish' ) { |
| 42 | 42 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * @param $end_date string|bool The end date for which we'd like to filter the donations stats. If false, method will use the default end date of `this_month`. |
| 84 | 84 | * @param $gateway_id string|bool The gateway to get earnings for such as 'paypal' or 'stripe'. |
| 85 | 85 | * |
| 86 | - * @return float|int Total amount of donations based on the passed arguments. |
|
| 86 | + * @return string Total amount of donations based on the passed arguments. |
|
| 87 | 87 | */ |
| 88 | 88 | public function get_earnings( $form_id = 0, $start_date = false, $end_date = false, $gateway_id = false ) { |
| 89 | 89 | $this->setup_dates( $start_date, $end_date ); |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | * @param $end_date string|bool The end date for which we'd like to filter our sale stats. If false, we'll use the default end date of `this_month` |
| 169 | 169 | * @param $gateway_id string|bool The gateway to get earnings for such as 'paypal' or 'stripe' |
| 170 | 170 | * |
| 171 | - * @return float|int Total amount of donations based on the passed arguments. |
|
| 171 | + * @return string Total amount of donations based on the passed arguments. |
|
| 172 | 172 | */ |
| 173 | 173 | public function get_earnings_cache_key( $form_id = 0, $start_date = false, $end_date = false, $gateway_id = false ) { |
| 174 | 174 | |
@@ -681,7 +681,7 @@ discard block |
||
| 681 | 681 | * @param int $year Year number. Default is null. |
| 682 | 682 | * @param int $hour Hour number. Default is null. |
| 683 | 683 | * |
| 684 | - * @return int $earnings Earnings |
|
| 684 | + * @return double $earnings Earnings |
|
| 685 | 685 | */ |
| 686 | 686 | function give_get_earnings_by_date( $day = null, $month_num, $year = null, $hour = null ) { |
| 687 | 687 | |
@@ -970,7 +970,7 @@ discard block |
||
| 970 | 970 | * |
| 971 | 971 | * @param int $payment_id Payment ID. |
| 972 | 972 | * |
| 973 | - * @return array $user_info User Info Meta Values. |
|
| 973 | + * @return string $user_info User Info Meta Values. |
|
| 974 | 974 | */ |
| 975 | 975 | function give_get_payment_meta_user_info( $payment_id ) { |
| 976 | 976 | $payment = new Give_Payment( $payment_id ); |
@@ -987,7 +987,7 @@ discard block |
||
| 987 | 987 | * |
| 988 | 988 | * @param int $payment_id Payment ID. |
| 989 | 989 | * |
| 990 | - * @return int $form_id Form ID. |
|
| 990 | + * @return string $form_id Form ID. |
|
| 991 | 991 | */ |
| 992 | 992 | function give_get_payment_form_id( $payment_id ) { |
| 993 | 993 | $payment = new Give_Payment( $payment_id ); |
@@ -157,7 +157,7 @@ |
||
| 157 | 157 | * |
| 158 | 158 | * @access public |
| 159 | 159 | * @since 1.0 |
| 160 | - * @return mixed string If search is present, false otherwise |
|
| 160 | + * @return string|false string If search is present, false otherwise |
|
| 161 | 161 | */ |
| 162 | 162 | public function get_search() { |
| 163 | 163 | return ! empty( $_GET['s'] ) ? urldecode( trim( $_GET['s'] ) ) : false; |
@@ -283,7 +283,7 @@ |
||
| 283 | 283 | * @since 1.0 |
| 284 | 284 | * |
| 285 | 285 | * @param int|float|string $amount Formatted or sanitized price |
| 286 | - * @param int|bool $dp number of decimals |
|
| 286 | + * @param boolean $dp number of decimals |
|
| 287 | 287 | * @param bool $sanitize Whether or not sanitize number |
| 288 | 288 | * |
| 289 | 289 | * @return string $amount Newly formatted amount or Price Not Available |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * |
| 156 | 156 | * Used to redirect a user back to the donation form if there are errors present. |
| 157 | 157 | * |
| 158 | - * @param array $args |
|
| 158 | + * @param string $args |
|
| 159 | 159 | * |
| 160 | 160 | * @access public |
| 161 | 161 | * @since 1.0 |
@@ -441,7 +441,7 @@ discard block |
||
| 441 | 441 | * |
| 442 | 442 | * @param int $form_id Give Form ID |
| 443 | 443 | * |
| 444 | - * @return int $earnings Earnings for a certain form |
|
| 444 | + * @return double $earnings Earnings for a certain form |
|
| 445 | 445 | */ |
| 446 | 446 | function give_get_form_earnings_stats( $form_id = 0 ) { |
| 447 | 447 | $give_form = new Give_Donate_Form( $form_id ); |
@@ -708,7 +708,7 @@ discard block |
||
| 708 | 708 | * |
| 709 | 709 | * @param int $form_id ID number of the form to retrieve the minimum price for |
| 710 | 710 | * |
| 711 | - * @return mixed string|int Minimum price of the form |
|
| 711 | + * @return string string|int Minimum price of the form |
|
| 712 | 712 | */ |
| 713 | 713 | function give_get_form_minimum_price( $form_id = 0 ) { |
| 714 | 714 | |
@@ -521,7 +521,7 @@ |
||
| 521 | 521 | * Example: <?php $give = Give(); ?> |
| 522 | 522 | * |
| 523 | 523 | * @since 1.0 |
| 524 | - * @return object|Give |
|
| 524 | + * @return Give |
|
| 525 | 525 | */ |
| 526 | 526 | function Give() { |
| 527 | 527 | return Give::instance(); |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | * Return the calculated completion percentage. |
| 217 | 217 | * |
| 218 | 218 | * @since 1.8.12 |
| 219 | - * @return int |
|
| 219 | + * @return double |
|
| 220 | 220 | */ |
| 221 | 221 | public function get_percentage_complete() { |
| 222 | 222 | return ceil( ( 100 * $this->step_completed ) / $this->total_step ); |
@@ -353,6 +353,9 @@ discard block |
||
| 353 | 353 | return true; |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | + /** |
|
| 357 | + * @param integer $page |
|
| 358 | + */ |
|
| 356 | 359 | public function get_delete_ids( $donation_ids, $page ) { |
| 357 | 360 | $index = $page --; |
| 358 | 361 | $count = count( $donation_ids ); |