Initial export of the repository

Signed-off-by: Ryan McCue <me@ryanmccue.info>
This commit is contained in:
Ryan McCue 2025-06-05 11:51:30 +02:00
commit 583d434505
76 changed files with 39023 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<?php
/**
* Disable the Openverse media category in the block editor.
*
* @package FAIR
*/
namespace FAIR\Disable_Openverse;
/**
* Bootstrap the module functionality.
*/
function bootstrap() {
add_filter( 'block_editor_settings_all', __NAMESPACE__ . '\\disable_openverse_block_editor_settings' );
}
/**
* Disable the Openverse media category in the block editor.
*
* @param array $settings The block editor settings.
* @return array The modified block editor settings.
*/
function disable_openverse_block_editor_settings( array $settings ) : array {
$settings['enableOpenverseMediaCategory'] = false;
return $settings;
}