PluginProbe ʕ •ᴥ•ʔ
Presto Player / 2.0.7
Presto Player v2.0.7
4.5.0 4.4.1 4.4.0 4.3.3 4.3.2 4.3.1 4.3.0 4.2.4 4.2.3 4.2.2 4.2.0 4.2.1 trunk 1.10.0 1.10.1 1.10.2 1.11.0 1.12.0 1.13.0 1.14.0 1.14.1 1.5.10 1.5.11 1.5.12 1.5.13 1.5.14 1.5.15 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.10 1.6.11 1.6.12 1.6.13 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 1.9.13 1.9.14 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.2.0 2.2.1 2.2.2 2.2.3 2.2.3-beta1 2.3.0 2.3.1 2.3.2 2.3.3 3.0.0 3.0.0-beta1 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.1.0 3.1.1 3.1.2 3.1.3 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.0.8 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4
presto-player / inc / config / app.php
presto-player / inc / config Last commit date
app.php 3 years ago
app.php
76 lines
1 <?php
2
3 return [
4 /*
5 |--------------------------------------------------------------------------
6 | Autoloaded Components
7 |--------------------------------------------------------------------------
8 |
9 | The component classes listed here will be automatically loaded on the
10 | request to your application.
11 |
12 */
13 'components' => [
14 // seeder
15 \PrestoPlayer\Seeds\Seeder::class,
16
17 // files
18 \PrestoPlayer\Files::class,
19 \PrestoPlayer\Attachment::class,
20
21 // blocks
22 \PrestoPlayer\Blocks\SelfHostedBlock::class,
23 \PrestoPlayer\Blocks\YouTubeBlock::class,
24 \PrestoPlayer\Blocks\VimeoBlock::class,
25 \PrestoPlayer\Blocks\ReusableVideoBlock::class,
26 \PrestoPlayer\Blocks\ReusableEditBlock::class,
27 \PrestoPlayer\Blocks\AudioBlock::class,
28
29 // block services
30 \PrestoPlayer\Services\Blocks\YoutubeBlockService::class,
31 \PrestoPlayer\Services\Blocks\VimeoBlockService::class,
32
33 // integrations
34 \PrestoPlayer\Integrations\Kadence::class,
35 \PrestoPlayer\Integrations\Divi\Divi::class,
36 \PrestoPlayer\Integrations\Elementor\Elementor::class,
37 \PrestoPlayer\Integrations\BeaverBuilder\BeaverBuilder::class,
38 \PrestoPlayer\Integrations\LearnDash\LearnDash::class,
39 \PrestoPlayer\Integrations\Tutor\Tutor::class,
40 \PrestoPlayer\Integrations\Lifter\Lifter::class,
41
42 // services
43 \PrestoPlayer\Services\Migrations::class,
44 \PrestoPlayer\Services\Translation::class,
45 \PrestoPlayer\Services\Player::class,
46 \PrestoPlayer\Services\Shortcodes::class,
47 \PrestoPlayer\Services\Menu::class,
48 \PrestoPlayer\Services\Scripts::class,
49 \PrestoPlayer\Services\Blocks::class,
50 \PrestoPlayer\Services\Settings::class,
51 \PrestoPlayer\Services\VideoPostType::class,
52 \PrestoPlayer\Services\ReusableVideos::class,
53 \PrestoPlayer\Services\AdminNotices::class,
54 \PrestoPlayer\Services\ProCompatibility::class,
55 \PrestoPlayer\Services\Compatibility::class,
56 \PrestoPlayer\Services\AjaxActions::class,
57
58 // api
59 \PrestoPlayer\Services\API\RestPresetsController::class,
60 \PrestoPlayer\Services\API\RestAudioPresetsController::class,
61 \PrestoPlayer\Services\API\RestSettingsController::class,
62 \PrestoPlayer\Services\API\RestVideosController::class,
63 ],
64
65 /*
66 |--------------------------------------------------------------------------
67 | Autoloaded Pro Components
68 |--------------------------------------------------------------------------
69 |
70 | The component classes listed here will be automatically loaded
71 | if another plugin adds to this filter
72 |
73 */
74 'pro_components' => apply_filters('presto_player_pro_components', [])
75 ];
76