PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/mytube.pm/wp-content/plugins/social-pug/inc/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/mytube.pm/wp-content/plugins/social-pug/inc/functions-feature-flags.php |
<?php namespace Mediavine\Grow; /** * Whether a feature flag is enabled. * * @param $name Feature flag unique name. * @return bool */ function feature_flag( $name ) { // Pass to Beta_Tester plugin. if ( function_exists( '\Mediavine\Beta\feature_flag' ) ) { return \Mediavine\Beta\feature_flag( $name ); } return false; } /** * Declare the feature flags currently in use. * * @return array Registered flags. */ function register_flags() { // Load the manifest. $feature_flags = include __DIR__ . '/feature-flags.php'; // Pass to Beta_Tester plugin. if ( function_exists( '\Mediavine\Beta\register_flags' ) ) { return \Mediavine\Beta\register_flags( $feature_flags ); } return []; } // GROW FEATURE FLAG CALLBACKS //