@1[UP?@1[U`?1[U@>1[U0>[U@1[UP(?@71[UP`)R1[U`)>1[U *>"ƻ"ߚH0`0` pߚH@1[UP?1[UP`K11[UP>1[U0> 1A@1[UP?1[UP`K11[UP>1[U0>2A 3H79@=B?ASTsy}0d䄓U-"ߚJ9@綬3h綬| *}w"ߚO tgmpa_utils/var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/inc/tgm/class-tgm-plugin-activation.php:3"ߚF궬sts/fewo-schwarzenbruck.de/httpdocs/wp-content/plugins/ml-slider/inc/slider/metaslider.flex.class.phpfwHw3"߂UyļL ^/var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/inc/vendor/composerautoload_real.php-1"ߚNyI)ŵn/var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/inc/vendor/composer/ClassLoader.phplass.php*ͷw"ߚA%e p/var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/inc/vendor/composer/autoload_real.phpss.phpʪǙo("ߚA9궬sts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/inc/vendor/composerautoload_real.phpӯWl"ߚA sts/fewo-schwarzenbruck.de/httpdocs/wp-content/plugins/ml-slider/inc/metaslider.imagehelper.class.php\+[m"ߚC /var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/plugins/ml-slider/inc/metaslider.systemcheck.class.php=ktB"ߚCY/var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/plugins/ml-slider/inc/metaslider.widget.class.php.php1"ߚB/** * Sets up the customizer sections. * * @since 1.0.0 * @access public * @param object $manager * @return void */B&40}/var/www/vhosts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/justinadlock-customizer-button/class-customize.phpj"ߚEyq/** * Singleton class for handling the theme's customizer integration. * * @since 1.0.0 * @access public */stomize.php"ߚEyAsts/fewo-schwarzenbruck.de/httpdocs/wp-content/themes/ecocoded/justinadlock-customizer-button/class-customize.phpa"ߚB% A/-1[Uhee@/-1[U@/-1[U!."蹈Iﶬ|/ݰ`PﶬPBzZjﶬ0PﶬqPIﶬst_id ); if ( ! $post instanceof \WP_Post ) { return $title; } if ( ! empty( $post->post_password ) ) { /* translators: %s: Protected post title. */ $prepend = __( 'Protected: %s' ); /** * @see get_the_title() for the original filter documentation. */ $protected_title_format = apply_filters( 'protected_title_format', $prepend, $post ); $title = sprintf( $protected_title_format, $title ); } return $title; } /** * Filters and modifies the event WP_Post object returned from the `tribe_get_event` function to hide some * sensitive information if required. * * @since 5.0.0 * * @param \WP_Post $event The event post object, decorated w/ properties added by the `tribe_get_event` function. * * @return \WP_Post The event post object, decorated w/ properties added by the `tribe_get_event` function, some of * them updated to hide sensitive information, if required. */ public function filter_event_properties( \WP_Post $event ) { if ( post_password_required( $event ) ) { $props = [ 'start_date', 'start_date_utc', 'end_date', 'end_date_utc', 'cost', 'recurring', 'permalink_all', ]; foreach ( $props as $prop ) { $event->{$prop} = ''; } foreach ( [ 'venues', 'organizers' ] as $lazy_collection ) { $event->{$lazy_collection} = new Lazy_Post_Collection( '__return_empty_array' ); } foreach ( [ 'plain_schedule_details', 'schedule_details', 'excerpt' ] as $lazy_string ) { $event->{$lazy_string} = new Lazy_String( '__return_empty_string' ); } $event->thumbnail = new Post_Thumbnail( - 1 ); } return $event; } /** * Filter the display of the_title for password protected events, venues, and organizers. * * @since 5.3.1 * * @param string $title The post title. * @param int|\WP_Post $post_id The post ID, or object, to apply the filter for. * * @return string The post title or empty string if password protected. */ public function filter_the_title_display( $title, $post_id = 0 ) { $post = get_post( $post_id ); if ( ! $post instanceof \WP_Post ) { return $title; } if ( empty( $post->post_password ) ) { return $title; } $post_type = get_post_type( $post_id ); $post_types = array( \Tribe__Events__Main::POSTTYPE, \Tribe__Events__Organizer::POSTTYPE, \Tribe__Events__Venue::POSTTYPE, ); if ( in_array( $post_type, $post_types, true ) ) { return ''; } return $title; } }