File "sportspress-calendars.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/modules/sportspress-calendars.php
File size: 14.91 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Calendars
*
* @author ThemeBoy
* @category Modules
* @package SportsPress/Modules
* @version 2.7.9
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'SportsPress_Calendars' ) ) :
/**
* Main SportsPress Calendars Class
*
* @class SportsPress_Calendars
* @version 2.6.15
*/
class SportsPress_Calendars {
/**
* Constructor
*/
public function __construct() {
// Define constants
$this->define_constants();
// Actions
add_action( 'init', array( $this, 'register_post_type' ) );
add_action( 'add_meta_boxes', array( $this, 'remove_meta_boxes' ), 10 );
add_action( 'sportspress_include_post_type_handlers', array( $this, 'include_post_type_handler' ) );
add_action( 'sportspress_widgets', array( $this, 'include_widgets' ) );
add_action( 'sportspress_create_rest_routes', array( $this, 'create_rest_routes' ) );
add_action( 'sportspress_register_rest_fields', array( $this, 'register_rest_fields' ) );
// Filters
add_filter( 'sportspress_meta_boxes', array( $this, 'add_meta_boxes' ) );
add_filter( 'sportspress_shortcodes', array( $this, 'add_shortcodes' ) );
add_filter( 'sportspress_event_settings', array( $this, 'add_event_settings' ) );
add_filter( 'sportspress_team_options', array( $this, 'add_team_options' ) );
add_filter( 'sportspress_after_team_template', array( $this, 'add_team_template' ), 40 );
add_filter( 'sportspress_player_options', array( $this, 'add_player_options' ) );
add_filter( 'sportspress_after_player_template', array( $this, 'add_player_template' ), 40 );
}
/**
* Define constants.
*/
private function define_constants() {
if ( ! defined( 'SP_CALENDARS_VERSION' ) ) {
define( 'SP_CALENDARS_VERSION', '2.6.15' );
}
if ( ! defined( 'SP_CALENDARS_URL' ) ) {
define( 'SP_CALENDARS_URL', plugin_dir_url( __FILE__ ) );
}
if ( ! defined( 'SP_CALENDARS_DIR' ) ) {
define( 'SP_CALENDARS_DIR', plugin_dir_path( __FILE__ ) );
}
}
/**
* Register calendars post type
*/
public static function register_post_type() {
register_post_type(
'sp_calendar',
apply_filters(
'sportspress_register_post_type_calendar',
array(
'labels' => array(
'name' => esc_attr__( 'Calendars', 'sportspress' ),
'singular_name' => esc_attr__( 'Calendar', 'sportspress' ),
'add_new_item' => esc_attr__( 'Add New Calendar', 'sportspress' ),
'edit_item' => esc_attr__( 'Edit Calendar', 'sportspress' ),
'new_item' => esc_attr__( 'New', 'sportspress' ),
'view_item' => esc_attr__( 'View Calendar', 'sportspress' ),
'search_items' => esc_attr__( 'Search', 'sportspress' ),
'not_found' => esc_attr__( 'No results found.', 'sportspress' ),
'not_found_in_trash' => esc_attr__( 'No results found.', 'sportspress' ),
),
'public' => true,
'show_ui' => true,
'capability_type' => 'sp_calendar',
'map_meta_cap' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'hierarchical' => false,
'rewrite' => array( 'slug' => get_option( 'sportspress_calendar_slug', 'calendar' ) ),
'supports' => array( 'title', 'editor', 'author', 'thumbnail' ),
'has_archive' => false,
'show_in_nav_menus' => true,
'show_in_menu' => 'edit.php?post_type=sp_event',
'show_in_admin_bar' => true,
'show_in_rest' => true,
'rest_controller_class' => 'SP_REST_Posts_Controller',
'rest_base' => 'calendars',
)
)
);
}
/**
* Remove meta boxes.
*/
public function remove_meta_boxes() {
remove_meta_box( 'sp_seasondiv', 'sp_calendar', 'side' );
remove_meta_box( 'sp_leaguediv', 'sp_calendar', 'side' );
remove_meta_box( 'sp_venuediv', 'sp_calendar', 'side' );
}
/**
* Conditonally load the class and functions only needed when viewing this post type.
*/
public function include_post_type_handler() {
include_once SP()->plugin_path() . '/includes/admin/post-types/class-sp-admin-cpt-calendar.php';
}
/**
* Add widgets.
*/
public function include_widgets() {
include_once SP()->plugin_path() . '/includes/widgets/class-sp-widget-event-calendar.php';
include_once SP()->plugin_path() . '/includes/widgets/class-sp-widget-event-list.php';
include_once SP()->plugin_path() . '/includes/widgets/class-sp-widget-event-blocks.php';
}
/**
* Create REST API routes.
*/
public function create_rest_routes() {
$controller = new SP_REST_Posts_Controller( 'sp_calendar' );
$controller->register_routes();
}
/**
* Register REST API fields.
*/
public function register_rest_fields() {
register_rest_field(
'sp_calendar',
'format',
array(
'get_callback' => 'SP_REST_API::get_post_meta',
'update_callback' => 'SP_REST_API::update_post_meta',
'schema' => array(
'description' => esc_attr__( 'Layout', 'sportspress' ),
'type' => 'string',
'context' => array( 'view', 'edit' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
register_rest_field(
'sp_calendar',
'data',
array(
'get_callback' => 'SP_REST_API::get_post_data',
'schema' => array(
'description' => esc_attr__( 'Events', 'sportspress' ),
'type' => 'array',
'context' => array( 'view' ),
'arg_options' => array(
'sanitize_callback' => 'rest_sanitize_request_arg',
),
),
)
);
}
/**
* Add meta boxes to calendars.
*
* @return array
*/
public function add_meta_boxes( $meta_boxes ) {
$meta_boxes['sp_calendar'] = array(
'shortcode' => array(
'title' => esc_attr__( 'Shortcode', 'sportspress' ),
'output' => 'SP_Meta_Box_Calendar_Shortcode::output',
'context' => 'side',
'priority' => 'default',
),
'feeds' => array(
'title' => esc_attr__( 'Feeds', 'sportspress' ),
'output' => 'SP_Meta_Box_Calendar_Feeds::output',
'context' => 'side',
'priority' => 'default',
),
'format' => array(
'title' => esc_attr__( 'Layout', 'sportspress' ),
'save' => 'SP_Meta_Box_Calendar_Format::save',
'output' => 'SP_Meta_Box_Calendar_Format::output',
'context' => 'side',
'priority' => 'default',
),
'columns' => array(
'title' => esc_attr__( 'Columns', 'sportspress' ),
'save' => 'SP_Meta_Box_Calendar_Columns::save',
'output' => 'SP_Meta_Box_Calendar_Columns::output',
'context' => 'side',
'priority' => 'default',
),
'details' => array(
'title' => esc_attr__( 'Details', 'sportspress' ),
'save' => 'SP_Meta_Box_Calendar_Details::save',
'output' => 'SP_Meta_Box_Calendar_Details::output',
'context' => 'side',
'priority' => 'default',
),
'data' => array(
'title' => esc_attr__( 'Events', 'sportspress' ),
'save' => 'SP_Meta_Box_Calendar_Data::save',
'output' => 'SP_Meta_Box_Calendar_Data::output',
'context' => 'normal',
'priority' => 'high',
),
);
return $meta_boxes;
}
/**
* Add shortcodes.
*
* @return array
*/
public function add_shortcodes( $shortcodes ) {
$shortcodes['event'][] = 'calendar';
$shortcodes['event'][] = 'list';
$shortcodes['event'][] = 'blocks';
return $shortcodes;
}
/**
* Add event settings.
*
* @return array
*/
public function add_event_settings( $settings ) {
$settings = array_merge(
$settings,
array(
array(
'title' => esc_attr__( 'Event List', 'sportspress' ),
'type' => 'title',
'id' => 'event_list_options',
),
),
apply_filters(
'sportspress_event_list_options',
array(
array(
'title' => esc_attr__( 'Title', 'sportspress' ),
'desc' => esc_attr__( 'Display calendar title', 'sportspress' ),
'id' => 'sportspress_event_list_show_title',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_attr__( 'Teams', 'sportspress' ),
'desc' => esc_attr__( 'Display logos', 'sportspress' ),
'id' => 'sportspress_event_list_show_logos',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => esc_attr__( 'Title Format', 'sportspress' ),
'id' => 'sportspress_event_list_title_format',
'default' => 'title',
'type' => 'select',
'options' => array(
'title' => esc_attr__( 'Title', 'sportspress' ),
'teams' => esc_attr__( 'Teams', 'sportspress' ),
'homeaway' => sprintf( '%s | %s', esc_attr__( 'Home', 'sportspress' ), esc_attr__( 'Away', 'sportspress' ) ),
),
),
array(
'title' => esc_attr__( 'Time/Results Format', 'sportspress' ),
'id' => 'sportspress_event_list_time_format',
'default' => 'combined',
'type' => 'select',
'options' => array(
'combined' => esc_attr__( 'Combined', 'sportspress' ),
'separate' => esc_attr__( 'Separate', 'sportspress' ),
'time' => esc_attr__( 'Time Only', 'sportspress' ),
'results' => esc_attr__( 'Results Only', 'sportspress' ),
),
),
array(
'title' => esc_attr__( 'Pagination', 'sportspress' ),
'desc' => esc_attr__( 'Paginate', 'sportspress' ),
'id' => 'sportspress_event_list_paginated',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_attr__( 'Limit', 'sportspress' ),
'id' => 'sportspress_event_list_rows',
'class' => 'small-text',
'default' => '10',
'desc' => esc_attr__( 'events', 'sportspress' ),
'type' => 'number',
'custom_attributes' => array(
'min' => 1,
'step' => 1,
),
),
)
),
array(
array(
'type' => 'sectionend',
'id' => 'event_list_options',
),
array(
'title' => esc_attr__( 'Event Blocks', 'sportspress' ),
'type' => 'title',
'id' => 'event_blocks_options',
),
),
apply_filters(
'sportspress_event_blocks_options',
array(
array(
'title' => esc_attr__( 'Title', 'sportspress' ),
'desc' => esc_attr__( 'Display calendar title', 'sportspress' ),
'id' => 'sportspress_event_blocks_show_title',
'default' => 'no',
'type' => 'checkbox',
),
array(
'title' => esc_attr__( 'Teams', 'sportspress' ),
'desc' => esc_attr__( 'Display logos', 'sportspress' ),
'id' => 'sportspress_event_blocks_show_logos',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_attr__( 'Details', 'sportspress' ),
'desc' => esc_attr__( 'Display league', 'sportspress' ),
'id' => 'sportspress_event_blocks_show_league',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'start',
),
array(
'desc' => esc_attr__( 'Display season', 'sportspress' ),
'id' => 'sportspress_event_blocks_show_season',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => '',
),
array(
'desc' => esc_attr__( 'Display matchday', 'sportspress' ),
'id' => 'sportspress_event_blocks_show_matchday',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => '',
),
array(
'desc' => esc_attr__( 'Display venue', 'sportspress' ),
'id' => 'sportspress_event_blocks_show_venue',
'default' => 'no',
'type' => 'checkbox',
'checkboxgroup' => 'end',
),
array(
'title' => esc_attr__( 'Pagination', 'sportspress' ),
'desc' => esc_attr__( 'Paginate', 'sportspress' ),
'id' => 'sportspress_event_blocks_paginated',
'default' => 'yes',
'type' => 'checkbox',
),
array(
'title' => esc_attr__( 'Limit', 'sportspress' ),
'id' => 'sportspress_event_blocks_rows',
'class' => 'small-text',
'default' => '5',
'desc' => esc_attr__( 'events', 'sportspress' ),
'type' => 'number',
'custom_attributes' => array(
'min' => 1,
'step' => 1,
),
),
)
),
array(
array(
'type' => 'sectionend',
'id' => 'event_list_options',
),
)
);
return $settings;
}
/**
* Add team options.
*
* @return array
*/
public function add_team_options( $options ) {
return array_merge(
$options,
array(
array(
'title' => esc_attr__( 'Events', 'sportspress' ),
'id' => 'sportspress_team_events_format',
'default' => 'title',
'type' => 'select',
'options' => array(
'blocks' => esc_attr__( 'Blocks', 'sportspress' ),
'calendar' => esc_attr__( 'Calendar', 'sportspress' ),
'list' => esc_attr__( 'List', 'sportspress' ),
),
),
)
);
}
/**
* Add player template.
*
* @return array
*/
public function add_player_template( $templates ) {
return array_merge(
$templates,
array(
'events' => array(
'title' => esc_attr__( 'Events', 'sportspress' ),
'option' => 'sportspress_player_show_events',
'action' => 'sportspress_output_player_events',
'default' => 'no',
),
)
);
}
/**
* Add player options.
*
* @return array
*/
public function add_player_options( $options ) {
return array_merge(
$options,
array(
array(
'title' => esc_attr__( 'Events', 'sportspress' ),
'id' => 'sportspress_player_events_format',
'default' => 'title',
'type' => 'select',
'options' => array(
'blocks' => esc_attr__( 'Blocks', 'sportspress' ),
'calendar' => esc_attr__( 'Calendar', 'sportspress' ),
'list' => esc_attr__( 'List', 'sportspress' ),
),
),
)
);
}
/**
* Add team template.
*
* @return array
*/
public function add_team_template( $templates ) {
return array_merge(
$templates,
array(
'events' => array(
'title' => esc_attr__( 'Events', 'sportspress' ),
'option' => 'sportspress_team_show_events',
'action' => 'sportspress_output_team_events',
'default' => 'no',
),
)
);
}
}
endif;
if ( get_option( 'sportspress_load_calendars_module', 'yes' ) == 'yes' ) {
new SportsPress_Calendars();
}