芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/the-events-calendar/src/Tribe/Privacy.php
default_privacy_policy_content( true ); wp_add_privacy_policy_content( __( 'The Events Calendar', 'the-events-calendar' ), $content ); } /** * Return the default suggested privacy policy content. * * @param bool $descr Whether to include the descriptions under the section headings. Default false. * * @since 4.6.20 * * @return string The default policy content. */ public function default_privacy_policy_content( $descr = false ) { ob_start(); include_once Tribe__Events__Main::instance()->pluginPath . 'src/admin-views/privacy.php'; $content = ob_get_clean(); /** * Filters the default content suggested for inclusion in a privacy policy. * * @since 4.6.20 * * @param $content string The default policy content. */ return apply_filters( 'tribe_events_default_privacy_policy_content', $content ); } }