A/** * Get browser accept language * * @return string[] */ UrlAcŬLV@>ŬLV0>x P@8/** * SQL filter conditions * * @var string[] */roup.phpD/** * Validated and normalized IP address * * @var string */rraB/** * Get headers as JSON * * @return array */ codeG/** * Group status - 'enabled' or 'disabled' * * @var string */F/** * Is the group enabled or disabled? * * @return boolean */tA/** * Get the module ID for this group * * @return int */ = 0; X5@ type * {Z@protected $t8$?@Target URL, </** * Current upgrade stage * * @var string|false */ical.php</** * Instance variable * * @var Redirection|null */front.php A/** * WordPress module * * @var WordPress_Module|false */.php[8/** * Hook to flush the logs * * @return void */'type'] ) ) { G/** * Used for unit tests * * @return WordPress_Module|false */A/** * Preferred domain. WWW or no WWW. * * @var string */php i@ingindia.orglA@/plugins/redF@nical.phpmeG/** * List of all upgrade stages * * @var array */>/** * Current database status * * @var string|false */ . $avail?/** * Result of last operation * * @var string|false */( [ 'cod@/** * Reason for current status * * @var string|false */Get lis>/** * Debug information * * @var array */c static 8/** * Finish upgrade process * * @return void */ 'error' => [C/** * Move current stage on to the next * * @return void */dom'8/** * @param string|false $stage * @return void */n' ], ]; } :/** * @param string $stage * @return string|false */() { return:ъLV:ъLVљAغE/var/www/vhosts/bettingindia.org/httpdocs/wp-content/object-cache.phpta8/** * Load translation files * * @since 0.2.4 */ortcode/^( $tby`kA@" readonly="readonly" class="widefat" onclick="this.select()" /> * *I@ */ publi(\F@t() { retu,G@ /** * D! XbPcfopPuv{| 9/** * @return \Composer\Autoload\ClassLoader */autoload.phpvwTk@/#\s?BEGIN\s?GzipWpFastestCache.*?#\s?END\s?GzipWpFastestCache/sm.php ?/** * Runs on activation of the plugin. * * @return void */hpurl_n;/** * Loads the rest api endpoints. * * @return void */er_page'] ) C/** * Wraps for notifications center class. * * @return void *//PEX> $offsebF/var/www/vhosts/bettingindia.org/httpdocs/wp-admin/includes/plugin.phpq5749:d<=`=>GHHIdSTW[_0-DComposer\Autoload\ComposerStaticInit44b6cfc1e4d940476922dba2e590eb80p fS.>ComposerAutoloaderInit44b6cfc1e4d940476922dba2e590eb80loaderoad.php/B lDcomposer\autoload\composerstaticinit44b6cfc1e4d940476922dba2e590eb80aram LogFilterParams $filter Array of filter params. * @phpstan-rThe current view slug. */ $do_include = (bool) apply_filters( 'tec_events_seo_robots_meta_include', $do_include, $view ); /** * Filter to disable the noindex meta tag on Views V2 for a specific view. * * @since 6.2.6 * * @param bool $do_include Whether to add the noindex, nofollow meta tag or not. * @param string $view The current view slug. */ $do_include = (bool) apply_filters( "tec_events_seo_robots_meta_include_{$view}", $do_include, $view ); if ( ! $do_include ) { return; } if ( $do_include ) { add_filter( 'wp_robots', [ $this, 'filter_robots_directives' ] ); } } /** * Set nofollow in the robots directives. * * @since 6.10.2 * * @param array $robots The directives for the robots meta tag. * * @return array The directives for the robots meta tag. */ public function set_nofollow( $robots ): array { $robots['nofollow'] = true; return $robots; } /** * Filter the robots directives for the current view. * * @since 6.10.2 * * @param array $robots The directives for the robots meta tag. * * @return array The directives for the robots meta tag. */ public function filter_robots_directives( $robots ) { $robots['noindex'] = true; /** * Filter wp robots directives on Views V2. * * @since 6.10.2 * * @param array $robots The directives for the robots meta tag. */ $robots = (array) apply_filters( 'tec_events_filter_wp_robots_meta_directives', $robots ); return $robots; } /** * Determine if a nonindex should be added for list based views that don't have events. * * @since 6.2.6 * * @param View_Interface $instance The view instance. * * @return bool */ protected function should_add_no_index_for_list_based_views( $instance ): bool { $context = $instance->get_context(); if ( ! $context->is( 'tec_post_type' ) ) { return false; } $events = $instance->get_repository(); // No posts = no index. $count = $events->count(); return $count <= 0; } /** * Returns the end date time object read from the current context. * * @since 6.2.3 * @deprecated 6.10.2 - No replacement, unused coding. * * @param string $view The current view slug. * @param DateTime $start_date The start date. * @param Tribe__Context $context The current context. * * @return DateTime|false A DateTime object or `false` if a DateTime object could not be built. * */ public function get_end_date( $view, $start_date, $context ) { _deprecated_function( __FUNCTION__, '6.10.2' ); $end_date = $context->get( 'end_date' ); switch ( $view ) { case 'day': $end_date = clone $start_date; $end_date->modify( '+1 day' ); return $end_date; case 'week': $end_date = clone $start_date; $end_date->modify( '+6 days' ); return $end_date; case 'month': $end_date = clone $start_date; $end_date->modify( '+1 month' ); return $end_date; default: return Dates::build_date_object( $end_date ); } } /** * Prints a "noindex,follow" robots tag. * * @since 6.2.3 * @deprecated 6.10.2 - use filter_robots_directives instead to modify WordPress's wp_robots filter. */ public function print_noindex_meta() :void { _deprecated_function( __FUNCTION__, '6.10.2', 'Use $this->>filter_robots_directives instead.' ); $robots_meta_content = $this->get_noindex_follow(); /** * Filter to disable the noindex meta tag on Views V2. * * @since 6.2.6 * @deprecated 6.10.2 - No replacement * * @param string $robots_meta_content The contents of the robots meta tag. * @param string $view The current view slug. */ $robots_meta_content = (string) apply_filters_deprecated( 'tec_events_seo_robots_meta_content', $robots_meta_content ); if ( ! $robots_meta_content ) { return; } $noindex_meta = sprintf( '', esc_attr( $robots_meta_content ) ). "\n"; /** * Filters the noindex meta tag. * * @since 6.2.3 * @deprecated 6.10.2 - No replacement. * * @param string $noindex_meta */ $noindex_meta = apply_filters_deprecated( 'tec_events_no_index_meta', $noindex_meta ); echo wp_kses( $noindex_meta, [ 'meta' => [ 'id' => true, 'name' => true, 'content' => true, ], ] ); } /** * Get the noindex, follow string. * * @since 6.2.6 * @deprecated 6.10.2 - No replacement. * * @return string */ public function get_noindex_follow(): string { _deprecated_function( __FUNCTION__, '6.10.2' ); return 'noindex, follow'; } /** * Get the noindex, nofollow string. * * @since 6.2.6 * @deprecated 6.10.2 - No replacement. * * @return string */ public function get_noindex_nofollow(): string { _deprecated_function( __FUNCTION__, '6.10.2' ); return 'noindex, nofollow'; } }