![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/askdragao.com/wp-content/plugins/sportspress/modules/ |
<?php /** * Gutenberg * * @author ThemeBoy * @category Modules * @package SportsPress/Modules * @version 2.7.9 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'SportsPress_Gutenberg' ) ) : /** * Main SportsPress Gutenberg Class * * @class SportsPress_Gutenberg * @version 2.6.13 */ class SportsPress_Gutenberg { /** * Constructor */ public function __construct() { // Define constants $this->define_constants(); add_filter( 'gutenberg_can_edit_post_type', array( $this, 'can_edit_post_type' ), 10, 2 ); add_filter( 'use_block_editor_for_post_type', array( $this, 'can_edit_post_type' ), 10, 2 ); // add_filter( 'block_categories', array( $this, 'add_category' ), 10, 2 ); // add_action( 'enqueue_block_editor_assets', array( $this, 'load_blocks' ) ); } /** * Define constants. */ private function define_constants() { if ( ! defined( 'SP_GUTENBERG_VERSION' ) ) { define( 'SP_GUTENBERG_VERSION', '2.6.13' ); } if ( ! defined( 'SP_GUTENBERG_URL' ) ) { define( 'SP_GUTENBERG_URL', plugin_dir_url( __FILE__ ) ); } if ( ! defined( 'SP_GUTENBERG_DIR' ) ) { define( 'SP_GUTENBERG_DIR', plugin_dir_path( __FILE__ ) ); } } /** * Modify Gutenberg behavior for custom post types. */ function can_edit_post_type( $enabled, $post_type ) { return is_sp_post_type( $post_type ) ? false : $enabled; } /** * Add SportsPress category to Gutenberg. */ function add_category( $categories, $post ) { return array_merge( $categories, array( array( 'slug' => 'sportspress', 'title' => esc_attr__( 'SportsPress', 'sportspress' ), ), ) ); } /** * Load Gutenberg blocks. */ function load_blocks() { wp_enqueue_script( 'sp-block-event-calendar', plugin_dir_url( SP_PLUGIN_FILE ) . 'assets/js/blocks/event-calendar.js', array( 'wp-blocks', 'wp-editor' ), true ); $strings = apply_filters( 'sportspress_localized_strings', array( 'event_calendar' => esc_attr__( 'Event Calendar', 'sportspress' ), 'properties' => esc_attr__( 'Properties', 'sportspress' ), 'title' => esc_attr__( 'Title', 'sportspress' ), 'select_calendar' => sprintf( esc_attr__( 'Select %s:', 'sportspress' ), esc_attr__( 'Calendar', 'sportspress' ) ), 'all' => esc_attr__( 'All', 'sportspress' ), ) ); $posts = array( 'events' => (array) get_posts( array( 'post_type' => 'sp_event', 'posts_per_page' => -1, ) ), ); wp_localize_script( 'sp-block-event-calendar', 'strings', $strings ); wp_localize_script( 'sp-block-event-calendar', 'posts', $posts ); } } endif; new SportsPress_Gutenberg();