/
var
/
www
/
vhosts
/
ihelp.ro
/
ajutam.ro
/
wp-content
/
plugins
/
give
/
src
/
API
/
Endpoints
/
Logs
/
/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/API/Endpoints/Logs
mkdir
upload
Name
Size
Mode
Actions
Endpoint.php
923
0644
edit
dl
rm
FlushLogs.php
1630
0644
edit
dl
rm
GetLogs.php
5729
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/API/Endpoints/Logs/FlushLogs.php
(1630B)
<?php namespace Give\API\Endpoints\Logs; use Give\Log\LogRepository; use WP_REST_Request; use WP_REST_Response; /** * Class FlushLogs * @package Give\API\Endpoints\Logs * * @since 2.10.0 */ class FlushLogs extends Endpoint { /** @var string */ protected $endpoint = 'logs/flush-logs'; /** * @var LogRepository */ private $logRepository; /** * GetLogs constructor. * * @param LogRepository $repository */ public function __construct(LogRepository $repository) { $this->logRepository = $repository; } /** * @inheritDoc */ public function registerRoute() { register_rest_route( 'give-api/v2', $this->endpoint, [ [ 'methods' => 'DELETE', 'callback' => [$this, 'handleRequest'], 'permission_callback' => [$this, 'permissionsCheck'], 'args' => [], ], 'schema' => [$this, 'getSchema'], ] ); } /** * @return array */ public function getSchema() { return [ '$schema' => 'http://json-schema.org/draft-04/schema#', 'title' => 'logs', 'type' => 'object', 'properties' => [], ]; } /** * @param WP_REST_Request $request * * @return WP_REST_Response */ public function handleRequest(WP_REST_Request $request) { $this->logRepository->flushLogs(); return new WP_REST_Response(['status' => true]); } }
Save
cmd:
run