PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / trunk
Pods – Custom Content Types and Fields vtrunk
2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / src / Pods / Service_Provider_Fallback.php
pods / src / Pods Last commit date
API 2 weeks ago Admin 15 minutes ago Blocks 2 weeks ago CLI 2 weeks ago Container 2 weeks ago Data 2 weeks ago Integrations 15 minutes ago REST 2 weeks ago Theme 2 weeks ago Tools 2 weeks ago WP 2 weeks ago Whatsit 2 weeks ago Config_Handler.php 2 weeks ago Integration.php 2 weeks ago Permissions.php 2 weeks ago Pod_Manager.php 2 weeks ago Service_Provider.php 2 weeks ago Service_Provider_Base.php 2 weeks ago Service_Provider_Fallback.php 2 weeks ago Static_Cache.php 2 weeks ago Whatsit.php 2 weeks ago Wisdom_Tracker.php 2 weeks ago
Service_Provider_Fallback.php
42 lines
1 <?php
2
3 namespace Pods;
4
5 /**
6 * The service provider logic.
7 *
8 * @since 2.9.18
9 */
10 abstract class Service_Provider_Fallback {
11 /**
12 * Determine whether the service provider will be a deferred one or not.
13 *
14 * @return bool Whether the service provider will be a deferred one or not.
15 * @since 2.9.18
16 *
17 */
18 public function isDeferred() {
19 return false;
20 }
21
22 /**
23 * Get the classes or interfaces bound and provided by the service provider.
24 *
25 * @return array The classes or interfaces bound and provided by the service provider.
26 * @since 2.9.18
27 *
28 */
29 public function provides() {
30 return [];
31 }
32
33 /**
34 * Bind and set up implementations at boot time.
35 *
36 * @since 2.9.18
37 */
38 public function boot() {
39 // Nothing to do here.
40 }
41 }
42