ACIL FM
Dark
Refresh
Current DIR:
/home/mhhtmff/www/site BKP/wp-content/plugins/wordpress-seo/src/routes
/
home
mhhtmff
www
site BKP
wp-content
plugins
wordpress-seo
src
routes
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
abstract-action-route.php
634 B
chmod
View
DL
Edit
Rename
Delete
abstract-indexation-route.php
900 B
chmod
View
DL
Edit
Rename
Delete
alert-dismissal-route.php
2.31 MB
chmod
View
DL
Edit
Rename
Delete
first-time-configuration-route.php
9.19 MB
chmod
View
DL
Edit
Rename
Delete
importing-route.php
4.05 MB
chmod
View
DL
Edit
Rename
Delete
indexables-head-route.php
2.31 MB
chmod
View
DL
Edit
Rename
Delete
indexing-route.php
12.19 MB
chmod
View
DL
Edit
Rename
Delete
integrations-route.php
2.18 MB
chmod
View
DL
Edit
Rename
Delete
meta-search-route.php
1.94 MB
chmod
View
DL
Edit
Rename
Delete
route-interface.php
267 B
chmod
View
DL
Edit
Rename
Delete
semrush-route.php
6.22 MB
chmod
View
DL
Edit
Rename
Delete
supported-features-route.php
1.27 MB
chmod
View
DL
Edit
Rename
Delete
wincher-route.php
8.62 MB
chmod
View
DL
Edit
Rename
Delete
workouts-route.php
3.09 MB
chmod
View
DL
Edit
Rename
Delete
yoast-head-rest-field.php
5.78 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /home/mhhtmff/www/site BKP/wp-content/plugins/wordpress-seo/src/routes/integrations-route.php
<?php namespace Yoast\WP\SEO\Routes; use WP_REST_Request; use WP_REST_Response; use Yoast\WP\SEO\Actions\Integrations_Action; use Yoast\WP\SEO\Conditionals\No_Conditionals; use Yoast\WP\SEO\Main; /** * Integrations_Route class. */ class Integrations_Route implements Route_Interface { use No_Conditionals; /** * Represents the integrations route. * * @var string */ const INTEGRATIONS_ROUTE = '/integrations'; /** * Represents a route to set the state of an integration. * * @var string */ const SET_ACTIVE_ROUTE = '/set_active'; /** * The integrations action. * * @var Integrations_Action */ private $integrations_action; /** * Integrations_Route constructor. * * @param Integrations_Action $integrations_action The integrations action. */ public function __construct( Integrations_Action $integrations_action ) { $this->integrations_action = $integrations_action; } /** * Registers routes with WordPress. * * @return void */ public function register_routes() { $set_active_route = [ 'methods' => 'POST', 'callback' => [ $this, 'set_integration_active' ], 'permission_callback' => [ $this, 'can_manage_options' ], 'args' => [ 'active' => [ 'type' => 'boolean', 'required' => true, ], 'integration' => [ 'type' => 'string', 'required' => true, ], ], ]; \register_rest_route( Main::API_V1_NAMESPACE, self::INTEGRATIONS_ROUTE . self::SET_ACTIVE_ROUTE, $set_active_route ); } /** * Checks if the current user has the right capability. * * @return bool */ public function can_manage_options() { return \current_user_can( 'wpseo_manage_options' ); } /** * Sets integration state. * * @param WP_REST_Request $request The request. * * @return WP_REST_Response */ public function set_integration_active( WP_REST_Request $request ) { $params = $request->get_json_params(); $integration_name = $params['integration']; $value = $params['active']; $data = $this ->integrations_action ->set_integration_active( $integration_name, $value ); return new WP_REST_Response( [ 'json' => $data ] ); } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply