????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/give/src/Donations/Endpoints/ |
Upload File : |
<?php namespace Give\Donations\Endpoints; use Give\API\RestRoute; use WP_Error; use WP_REST_Request; abstract class Endpoint implements RestRoute { /** * @var string */ protected $endpoint; /** * @param string $value * @since 2.20.0 * * @return bool */ public function validateInt($value) { return filter_var($value, FILTER_VALIDATE_INT); } /** * @param string $param * @param WP_REST_Request $request * @param string $key * @since 2.20.0 * * @return bool */ public function validateDate($param, $request, $key) { // Check that date is valid, and formatted YYYY-MM-DD if (substr_count($param, '-') !== 2) return false; list($year, $month, $day) = array_map('intval', explode('-', $param)); $valid = checkdate($month, $day, $year); // If checking end date, check that it is after start date if ('end' === $key) { $start = date_create($request->get_param('start')); $end = date_create($request->get_param('end')); $valid = $start <= $end ? $valid : false; } return $valid; } /** * Check user permissions * @since 2.20.0 * * @return bool|WP_Error */ public function permissionsCheck() { if (!current_user_can('edit_posts')) { return new WP_Error( 'rest_forbidden', esc_html__('You don\'t have permission to view Donations', 'give'), ['status' => $this->authorizationStatusCode()] ); } return true; } /** * Sets up the proper HTTP status code for authorization. * @since 2.20.0 * * @return int */ public function authorizationStatusCode() { if (is_user_logged_in()) { return 403; } return 401; } }