AudioPreset.php
4 years ago
Block.php
4 years ago
CurrentUser.php
5 years ago
EmailCollection.php
5 years ago
LicensedProduct.php
5 years ago
Model.php
4 years ago
ModelInterface.php
5 years ago
Player.php
5 years ago
Post.php
5 years ago
Preset.php
4 years ago
ReusableVideo.php
4 years ago
Setting.php
5 years ago
Video.php
4 years ago
Webhook.php
3 years ago
Block.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace PrestoPlayer\Models; |
| 4 | |
| 5 | class Block |
| 6 | { |
| 7 | public static function getBlockTypes() |
| 8 | { |
| 9 | return apply_filters('presto_player_registered_block_types', [ |
| 10 | 'presto-player/reusable-display', |
| 11 | 'presto-player/self-hosted', |
| 12 | 'presto-player/vimeo', |
| 13 | 'presto-player/youtube', |
| 14 | 'presto-player/bunny', |
| 15 | 'presto-player/audio' |
| 16 | ]); |
| 17 | } |
| 18 | } |
| 19 |