| Server IP : 45.77.68.45 / Your IP : 127.0.0.100 Web Server : PHPix/0.2.2 (Caddy compatible) System : wasi wasmer.sh 0.0.0 0.0.0 wasm32 User : ( 1) PHP Version : 8.3.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /app/wp-content/plugins/wordpress-seo/src/integrations/blocks/ |
Upload File : |
<?php
namespace Yoast\WP\SEO\Integrations\Blocks;
use Yoast\WP\SEO\Integrations\Integration_Interface;
/**
* Internal_Linking_Category block class.
*/
class Internal_Linking_Category implements Integration_Interface {
/**
* {@inheritDoc}
*/
public static function get_conditionals() {
return [];
}
/**
* {@inheritDoc}
*/
public function register_hooks() {
\add_filter( 'block_categories_all', [ $this, 'add_block_categories' ] );
}
/**
* Adds Yoast block categories.
*
* @param array $categories The categories.
* @return array The filtered categories.
*/
public function add_block_categories( $categories ) {
$categories[] = [
'slug' => 'yoast-structured-data-blocks',
'title' => \sprintf(
/* translators: %1$s expands to Yoast. */
\__( '%1$s Structured Data Blocks', 'wordpress-seo' ),
'Yoast'
),
];
$categories[] = [
'slug' => 'yoast-internal-linking-blocks',
'title' => \sprintf(
/* translators: %1$s expands to Yoast. */
\__( '%1$s Internal Linking Blocks', 'wordpress-seo' ),
'Yoast'
),
];
return $categories;
}
}