File Editor
Directories:
.. (Back)
Admin
Aggregator
Ajax
Collections
Customizer
Dates
Editor
Event_Status
Event_Tickets
Featured_Events
Google
Importer
Integrations
JSON_LD
Linked_Posts
Meta
Models
REST
Repositories
Revisions
Service_Providers
Shortcode
Taxonomy
Template
Utils
Validator
Views
Files:
API.php
Adjacent_Events.php
Admin_List.php
Aggregator.php
Amalgamator.php
Assets.php
Capabilities.php
Constants.php
Cost_Utils.php
Deactivation.php
Default_Values.php
Editor.php
Embedded_Maps.php
Event_Cleaner.php
Event_Cleaner_Scheduler.php
Featured_Events.php
Front_Page_View.php
Gutenberg.php
I18n.php
Ignored_Events.php
Linked_Posts.php
Main.php
Options_Exception.php
Organizer.php
Plugin_Register.php
Post_Exception.php
Privacy.php
Query.php
Rewrite.php
Template_Factory.php
Templates.php
Timezones.php
Updater.php
Venue.php
iCal.php
Create New File
Create
Edit File: Editor.php
<?php /** * Initialize Gutenberg editor blocks and styles * * @since 4.7 */ class Tribe__Events__Editor extends Tribe__Editor { /** * Hooks actions from the editor into the correct places * * @since 4.7 * * @return bool */ public function hook() { add_filter( 'tribe_events_register_event_type_args', [ $this, 'add_event_template_blocks' ] ); // Add Rest API support add_filter( 'tribe_events_register_event_type_args', [ $this, 'add_rest_support' ] ); add_filter( 'tribe_events_register_venue_type_args', [ $this, 'add_rest_support' ] ); add_filter( 'tribe_events_register_organizer_type_args', [ $this, 'add_rest_support' ] ); // Maybe add flag from classic editor add_action( 'load-post.php', [ $this, 'flag_post_from_classic_editor' ], 0 ); // Update Post content to use blocks add_action( 'tribe_blocks_editor_flag_post_classic_editor', [ $this, 'update_post_content_to_blocks' ] ); // Remove assets that are not relevant for Gutenberg Editor add_action( 'wp_print_scripts', [ $this, 'deregister_scripts' ] ); // Setup the registration of Blocks add_action( 'init', [ $this, 'register_blocks' ], 20 ); // Load assets of the blocks add_action( 'admin_init', [ $this, 'assets' ] ); // Add Block Categories to Editor global $wp_version; if ( version_compare( $wp_version, '5.8', '<' ) ) { // WP version is less then 5.8. add_action( 'block_categories', [ $this, 'block_categories' ], 10, 2 ); } else { // WP version is 5.8 or above. add_action( 'block_categories_all', [ $this, 'block_categories_all' ], 10, 2 ); } // Make sure Events supports 'custom-fields' add_action( 'init', [ $this, 'add_event_custom_field_support' ], 11 ); /** * @todo Move away from the generic to the new filter once it's introduced * See: https://core.trac.wordpress.org/ticket/45275 * * E.g.: `use_block_editor_for_{post_type}` */ add_filter( 'use_block_editor_for_post_type', [ $this, 'deactivate_blocks_editor_venue' ], 10, 2 ); add_filter( 'use_block_editor_for_post_type', [ $this, 'deactivate_blocks_editor_organizer' ], 10, 2 ); add_filter( 'use_block_editor_for_post_type', [ $this, 'deactivate_blocks_editor_event' ], 10, 2 ); } /** * For now we don't use Blocks editor on the Post Type for Organizers * * @todo see https://core.trac.wordpress.org/ticket/45275 * * @since 4.7 * * @param boolean $is_enabled * @param string $post_type * * @return boolean */ public function deactivate_blocks_editor_organizer( $is_enabled, $post_type ) { if ( Tribe__Events__Organizer::POSTTYPE === $post_type ) { return false; } return $is_enabled; } /** * For now we don't use Blocks editor on the Post Type for Venues * * @todo see https://core.trac.wordpress.org/ticket/45275 * * @since 4.7 * * @param boolean $is_enabled * @param string $post_type * * @return boolean */ public function deactivate_blocks_editor_venue( $is_enabled, $post_type ) { if ( Tribe__Events__Venue::POSTTYPE === $post_type ) { return false; } return $is_enabled; } /** * Deactivate the blocks editor from the events post type unless explicitly enabled by the user via the settings * on the events tab. * * @since 5.7.1 * * @param bool $is_enabled If blocks editor is enabled or not. * @param string $post_type The current post type. * * @return false */ public function deactivate_blocks_editor_event( $is_enabled, $post_type ) { // Not an event post type. if ( Tribe__Events__Main::POSTTYPE !== $post_type ) { return $is_enabled; } return tribe( 'editor' )->should_load_blocks(); } /** * When Gutenberg is active, we do not care about custom-fields as a metabox, but as part of the Rest API * * Code is located at: * https://github.com/moderntribe/the-events-calendar/blob/f8af49bc41048e8632372fc8da77202d9cb98d86/src/Tribe/Admin/Event_Meta_Box.php#L345 * * @todo Block that option once the user has Gutenberg active * * @since 4.7 * * @return void */ public function add_event_custom_field_support() { add_post_type_support( Tribe__Events__Main::POSTTYPE, 'custom-fields' ); } /** * When initially loading a post in gutenberg flags if came from classic editor * * @since 4.7 * * @return bool */ public function flag_post_from_classic_editor() { $post = absint( tribe_get_request_var( 'post' ) ); // Bail on empty post if ( empty( $post ) ) { return false; } // Bail on non numeric post if ( ! is_numeric( $post ) ) { return false; } /** @var Tribe__Editor $editor */ $editor = tribe( 'editor' ); // Bail if in classic editor if ( ! $editor->should_load_blocks() ) { return false; } // Bail if not an event (might need to be removed later) if ( ! tribe_is_event( $post ) ) { return false; } // Bail if it already has Blocks if ( has_blocks( $post ) ) { return false; } $has_flag_classic_editor = metadata_exists( 'post', $post, $this->key_flag_classic_editor ); // If we already have a flag we bail if ( $has_flag_classic_editor ) { return false; } // Update with the flag for the update process $status = update_post_meta( $post, $this->key_flag_classic_editor, 1 ); // Only trigger when we actually have the correct post if ( $status ) { /** * Flags when we are coming from a Classic editor into Blocks * * @since 4.7 * * @param int $post Which post is getting updated */ do_action( 'tribe_blocks_editor_flag_post_classic_editor', $post ); } return $status; } /** * Making sure we have correct post content for blocks after going into Gutenberg * * @since 4.7 * * @param int $post Which post we will migrate * * @return bool */ public function update_post_content_to_blocks( $post ) { $post = get_post( $post ); $blocks = $this->get_classic_template(); $content = []; foreach ( $blocks as $key => $block_param ) { $slug = reset( $block_param ); /** * Add an opportunity to set the default params of a block when migrating from classic into * blocks editor. * * @since 4.7 * * @param mixed $params Either array if set to values or slug string * @param string $slug Name of the block edited * @param WP_Post $post Post that is being affected */ $params = apply_filters( 'tribe_blocks_editor_update_classic_content_params', end( $block_param ), $slug, $post ); $json_param = false; // Checks for Params to attach to the tag if ( is_array( $params ) ) { $json_param = json_encode( $params ); } $block_tag = "<!-- wp:{$slug} {$json_param} /-->"; if ( 'core/paragraph' === $slug ) { if ( '' === $post->post_content ) { continue; } $content[] = '<!-- wp:freeform -->'; $content[] = $post->post_content; $content[] = '<!-- /wp:freeform -->'; } else { $content[] = $block_tag; } } $content = implode( "\n\r", $content ); /** * Allow filtering of the Content updated * * @since 4.7 * * @param string $content Content that will be updated * @param WP_Post $post Which post we will migrate * @param array $blocks Which blocks we are updating with */ $content = apply_filters( 'tribe_blocks_editor_update_classic_content', $content, $post, $blocks ); $status = wp_update_post( [ 'ID' => $post->ID, 'post_content' => $content, ] ); return $status; } /** * Gets the classic template, used for migration and setup new events with classic look * * @since 4.7 * * @return array */ public function get_classic_template() { $template = []; $template[] = [ 'tribe/event-datetime' ]; $template[] = [ 'tribe/featured-image' ]; $template[] = [ 'core/paragraph', [ 'placeholder' => __( 'Add Description...', 'the-events-calendar' ), ], ]; $template[] = [ 'tribe/event-links' ]; $template[] = [ 'tribe/classic-event-details' ]; $template[] = [ 'tribe/event-venue' ]; /** * Allow modifying the default classic template for Events * * @since 4.7 * * @param array $template Array of all the templates used by default * */ $template = apply_filters( 'tribe_events_editor_default_classic_template', $template ); return $template; } /** * Adds the required blocks into the Events Post Type * * @since 4.7 * * @param array $args Arguments used to setup the CPT template * * @return array */ public function add_event_template_blocks( $args = [] ) { $template = []; $post = tribe_get_request_var( 'post' ); $is_classic_editor = ! empty( $post ) && is_numeric( $post ) && ! has_blocks( $post ); // Basically setups up a different template if is a classic event if ( $is_classic_editor ) { $template = $this->get_classic_template(); } else { $template[] = [ 'tribe/event-datetime' ]; $template[] = [ 'core/paragraph', [ 'placeholder' => __( 'Add Description...', 'the-events-calendar' ), ], ]; $template[] = [ 'tribe/event-price' ]; $template[] = [ 'tribe/event-organizer' ]; $template[] = [ 'tribe/event-venue' ]; $template[] = [ 'tribe/event-website' ]; $template[] = [ 'tribe/event-links' ]; } /** * Allow modifying the default template for Events * * @since 4.7 * * @param array $template Array of all the templates used by default * @param string $post_type Which post type we are filtering * @param array $args Array of configurations for the post type * */ $args['template'] = apply_filters( 'tribe_events_editor_default_template', $template, Tribe__Events__Main::POSTTYPE, $args ); return $args; } /** * Prevents us from using `init` to register our own blocks, allows us to move * it when the proper place shows up * * @since 4.7 * * @return void */ public function register_blocks() { /** * Internal Action used to register blocks for Events * * @since 4.7 */ do_action( 'tribe_events_editor_register_blocks' ); } /** * Check if current admin page is post type `tribe_events` * * @since 4.7 * @since 6.2.7 Adding support to load on site editor screen. * * @return bool */ public function is_events_post_type(): bool { $current_screen = get_current_screen(); return Tribe__Admin__Helpers::instance()->is_post_type_screen( Tribe__Events__Main::POSTTYPE ) || ( $current_screen instanceof WP_Screen && 'site-editor' === $current_screen->id ); } /** * Check whether the current page is an edit post type page. * * @since 5.12.0 * @since 6.2.7 Adding support to load on site editor screen. * * @return bool */ public function is_edit_screen(): bool { $current_screen = get_current_screen(); return 'post' === $current_screen->base || 'site-editor' === $current_screen->id; } /** * @todo Move this into the Block PHP files * * @since 4.7 * * @return void */ public function assets() { $plugin = tribe( 'tec.main' ); /** * Allows for filtering the embedded Google Maps API URL. * * @since 4.7 * @since 6.0.13 Added the `$gmaps_api_callback` parameter. * * @param string $api_url The Google Maps API URL. * @param string $gmaps_api_callback The Google Maps API callback. */ $gmaps_api_key = tribe_get_option( 'google_maps_js_api_key' ); $gmaps_api_url = 'https://maps.googleapis.com/maps/api/js'; $gmaps_api_callback = 'Function.prototype'; if ( ! empty( $gmaps_api_key ) && is_string( $gmaps_api_key ) ) { $gmaps_api_url = add_query_arg( [ 'key' => $gmaps_api_key, 'callback' => $gmaps_api_callback, ], $gmaps_api_url ); } /** * Allows for filtering the embedded Google Maps API URL. * * @since 4.7 * * @param string $api_url The Google Maps API URL. */ $gmaps_api_url = apply_filters( 'tribe_events_google_maps_api', $gmaps_api_url ); tribe_asset( $plugin, 'tribe-events-editor-blocks-gmaps-api', $gmaps_api_url, [], 'enqueue_block_editor_assets', [ 'type' => 'js', 'in_footer' => false, 'localize' => [], 'conditionals' => [ $this, 'is_events_post_type' ], 'priority' => 1, ] ); tribe_asset( $plugin, 'tribe-the-events-calendar-vendor', 'app/vendor.js', [], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'localize' => [], 'conditionals' => [ $this, 'is_events_post_type' ], 'priority' => 100, ] ); tribe_asset( $plugin, 'tribe-the-events-calendar-editor', 'app/main.js', [], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'localize' => [], 'conditionals' => [ $this, 'is_events_post_type' ], 'priority' => 101, ] ); tribe_asset( $plugin, 'tec-widget-blocks', 'app/widgets.js', [ 'react', 'react-dom', 'wp-components', 'wp-api', 'wp-api-request', 'wp-blocks', 'wp-widgets', 'wp-i18n', 'wp-element', 'wp-editor', 'tribe-common-gutenberg-vendor', 'tribe-common-gutenberg-modules', 'tribe-common-gutenberg-main', ], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'localize' => [], 'priority' => 106, 'conditionals' => [ $this, 'is_edit_screen' ], ] ); tribe_asset( $plugin, 'tec-widget-blocks-styles', 'app/widgets.css', [ 'wp-widgets', ], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'conditionals' => [ $this, 'is_edit_screen' ], ] ); tribe_asset( $plugin, 'tec-blocks-category-icon-styles', 'tribe-admin-block-category-icons.css', [], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'conditionals' => [ $this, 'is_edit_screen' ], ] ); tribe_asset( Tribe__Main::instance(), 'tribe-block-editor-vendor', 'app/vendor.css', [], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'conditionals' => [ $this, 'is_events_post_type' ], ] ); tribe_asset( $plugin, 'tribe-block-editor-main', 'app/main.css', [], 'enqueue_block_editor_assets', [ 'in_footer' => false, 'conditionals' => [ $this, 'is_events_post_type' ], ] ); } /** * Remove scripts that are not relevant for the Gutenberg editor or conflict with the scripts * used on gutenberg * * @since 4.7 */ public function deregister_scripts() { wp_deregister_script( 'tribe_events_google_maps_api' ); } /** * Add "Event Blocks" category to the editor * * @deprecated 5.8.2 * * @since 4.7 * * @param array<array<string|string>> $categories An array of categories each an array * in the format property => value. * @param WP_Post $post The post object we're editing. * * @return array */ public function block_categories( $categories, $post ) { // Handle where someone is using this outside of this object global $wp_version; if ( version_compare( $wp_version, '5.8', '>=' ) ) { _deprecated_function( __FUNCTION__, '5.8.2', 'block_categories_all' ); } if ( Tribe__Events__Main::POSTTYPE !== $post->post_type ) { return $categories; } return array_merge( $categories, [ [ 'slug' => 'tribe-events', 'title' => __( 'Event Blocks', 'the-events-calendar' ), ], ] ); } /** * Add "Event Blocks" category to the editor. * * @since 5.8.2 block_categories() modified to cover WP 5.8 change of filter in a backwards-compatible way. * * @param array<array<string,string>> $categories An array of categories each an array. * in the format property => value. * @param WP_Block_Editor_Context $context The Block Editor Context object. * In WP versions prior to 5.8 this was the post object. * * @return array<array<string,string>> The block categories, filtered to add the Event Categories if applicable. */ public function block_categories_all( $categories, $context ) { if ( ! $context instanceof WP_Block_Editor_Context ) { return $categories; } // Make sure we have the post available. if ( empty( $context->post ) ) { return $categories; } return array_merge( $categories, [ [ 'slug' => 'tribe-events', 'title' => __( 'Event Blocks', 'the-events-calendar' ), ], ] ); } /************************ * * * Deprecated Methods * * * ************************/ /** * Adds the required blocks into the Events Post Type * * @since 4.7 * @deprecated 0.1.3-alpha * * @param array $args Arguments used to setup the CPT template * * @return array */ public function add_template_blocks( $args = [] ) { return $this->add_event_template_blocks( $args ); } /** * When the plugin loads the option is not set so the value is an empty string and when casting into a bool value * this returns a `false` positive. As empty string indicates the value has not set already. * * This is something should be addressed on TEC as is affecting any new user installing the plugin. * * Code is located at: https://github.com/moderntribe/the-events-calendar/blob/f8af49bc41048e8632372fc8da77202d9cb98d86/src/Tribe/Admin/Event_Meta_Box.php#L345 * * @since 4.7 * @deprecated 0.3.2-alpha * * @param $value * @param $name * * @return bool */ public function get_option( $value, $name ) { // If value is empty string indicates the value hasn't been set into the DB and should be true by default. if ( 'disable_metabox_custom_fields' === $name && '' === $value ) { return true; } return $value; } }
Save Changes
Rename File
Rename