array(
'name' => __( 'SportsPress Events (CSV)', 'sportspress' ),
'description' => __( 'Import events from a csv file.', 'sportspress' ),
'callback' => array( $this, 'events_importer' ),
),
'sp_fixture_csv' => array(
'name' => __( 'SportsPress Fixtures (CSV)', 'sportspress' ),
'description' => __( 'Import upcoming events from a csv file.', 'sportspress' ),
'callback' => array( $this, 'fixtures_importer' ),
),
'sp_team_csv' => array(
'name' => __( 'SportsPress Teams (CSV)', 'sportspress' ),
'description' => __( 'Import teams from a csv file.', 'sportspress' ),
'callback' => array( $this, 'teams_importer' ),
),
'sp_player_csv' => array(
'name' => __( 'SportsPress Players (CSV)', 'sportspress' ),
'description' => __( 'Import players from a csv file.', 'sportspress' ),
'callback' => array( $this, 'players_importer' ),
),
'sp_staff_csv' => array(
'name' => __( 'SportsPress Staff (CSV)', 'sportspress' ),
'description' => __( 'Import staff from a csv file.', 'sportspress' ),
'callback' => array( $this, 'staff_importer' ),
),
)
);
if ( 'import.php' !== $pagenow ) {
$importers['sp_event_performance_csv'] = array(
'name' => __( 'SportsPress Box Score (CSV)', 'sportspress' ),
'description' => '' . sprintf( __( 'Select %s', 'sportspress' ), __( 'Event', 'sportspress' ) ) . '',
'callback' => array( $this, 'event_performance_importer' ),
);
}
foreach ( $importers as $id => $importer ) {
register_importer( $id, $importer['name'], $importer['description'], $importer['callback'] );
}
}
/**
* Add menu item
*/
public function events_importer() {
$this->includes();
require 'importers/class-sp-event-importer.php';
// Dispatch
$importer = new SP_Event_Importer();
$importer->dispatch();
}
/**
* Add menu item
*/
public function event_performance_importer() {
$this->includes();
require 'importers/class-sp-event-performance-importer.php';
// Dispatch
$importer = new SP_Event_Performance_Importer();
$importer->dispatch();
}
/**
* Add menu item
*/
public function fixtures_importer() {
$this->includes();
require 'importers/class-sp-fixture-importer.php';
// Dispatch
$importer = new SP_Fixture_Importer();
$importer->dispatch();
}
/**
* Add menu item
*/
public function teams_importer() {
$this->includes();
require 'importers/class-sp-team-importer.php';
// Dispatch
$importer = new SP_Team_Importer();
$importer->dispatch();
}
/**
* Add menu item
*/
public function players_importer() {
$this->includes();
require 'importers/class-sp-player-importer.php';
// Dispatch
$importer = new SP_Player_Importer();
$importer->dispatch();
}
/**
* Add menu item
*/
public function staff_importer() {
$this->includes();
require 'importers/class-sp-staff-importer.php';
// Dispatch
$importer = new SP_Staff_Importer();
$importer->dispatch();
}
public static function includes() {
// Load Importer API
require_once ABSPATH . 'wp-admin/includes/import.php';
if ( ! class_exists( 'WP_Importer' ) ) {
$class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
if ( file_exists( $class_wp_importer ) ) {
require $class_wp_importer;
}
}
require 'importers/class-sp-importer.php';
}
}
endif;
return new SP_Admin_Importers();