kollapsminoriteten/wp-content/plugins/jetpack/extensions/extended-blocks/premium-content-container/premium-content-container.php

32 lines
660 B
PHP
Raw Normal View History

2020-09-15 14:30:05 +02:00
<?php
/**
* Plan checks for uploading video files to premium-content/container.
*
2021-04-27 08:32:47 +02:00
* @package automattic/jetpack
2020-09-15 14:30:05 +02:00
**/
2025-12-12 13:13:07 +01:00
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
2020-09-15 14:30:05 +02:00
// Populate the available extensions with premium-content/container.
add_filter(
'jetpack_set_available_extensions',
function ( $extensions ) {
return array_merge(
2025-08-27 08:44:30 +02:00
(array) $extensions,
2020-09-15 14:30:05 +02:00
array(
'premium-content/container',
)
);
}
);
// Set the premium-content/container block availability, depending on the site plan.
add_action(
'jetpack_register_gutenberg_extensions',
2020-12-10 14:04:11 +01:00
function () {
2020-09-15 14:30:05 +02:00
\Jetpack_Gutenberg::set_availability_for_plan( 'premium-content/container' );
}
);