Server IP : 192.158.238.246 / Your IP : 18.119.131.131 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/cwd/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 list($year, $month, $day) = 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; } }