177 lines
5.1 KiB
PHP
177 lines
5.1 KiB
PHP
<?php
|
|
/**
|
|
* Player importer - import players into SportsPress.
|
|
*
|
|
* @author ThemeBoy
|
|
* @category Admin
|
|
* @package SportsPress/Admin/Importers
|
|
* @version 1.7
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
if ( class_exists( 'WP_Importer' ) ) {
|
|
class SP_Player_Importer extends SP_Importer {
|
|
|
|
/**
|
|
* __construct function.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function __construct() {
|
|
$this->import_page = 'sp_player_csv';
|
|
$this->import_label = __( 'Import Players', 'sportspress' );
|
|
$this->columns = array(
|
|
'sp_number' => __( 'Squad Number', 'sportspress' ),
|
|
'post_title' => __( 'Name', 'sportspress' ),
|
|
'sp_position' => __( 'Positions', 'sportspress' ),
|
|
'sp_team' => __( 'Teams', 'sportspress' ),
|
|
'sp_league' => __( 'Competitions', 'sportspress' ),
|
|
'sp_season' => __( 'Seasons', 'sportspress' ),
|
|
'sp_nationality' => __( 'Nationality', 'sportspress' ),
|
|
);
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* import function.
|
|
*
|
|
* @access public
|
|
* @param array $array
|
|
* @param array $columns
|
|
* @return void
|
|
*/
|
|
function import( $array = array(), $columns = array( 'post_title' ) ) {
|
|
$this->imported = $this->skipped = 0;
|
|
|
|
if ( ! is_array( $array ) || ! sizeof( $array ) ):
|
|
$this->footer();
|
|
die();
|
|
endif;
|
|
|
|
$rows = array_chunk( $array, sizeof( $columns ) );
|
|
|
|
foreach ( $rows as $row ):
|
|
|
|
$row = array_filter( $row );
|
|
|
|
if ( empty( $row ) ) continue;
|
|
|
|
$meta = array();
|
|
|
|
foreach ( $columns as $index => $key ):
|
|
$meta[ $key ] = sp_array_value( $row, $index );
|
|
endforeach;
|
|
|
|
$name = sp_array_value( $meta, 'post_title' );
|
|
|
|
if ( ! $name ):
|
|
$this->skipped++;
|
|
continue;
|
|
endif;
|
|
|
|
$args = array( 'post_type' => 'sp_player', 'post_status' => 'publish', 'post_title' => $name );
|
|
|
|
$id = wp_insert_post( $args );
|
|
|
|
// Flag as import
|
|
update_post_meta( $id, '_sp_import', 1 );
|
|
|
|
// Update number
|
|
update_post_meta( $id, 'sp_number', sp_array_value( $meta, 'sp_number' ) );
|
|
|
|
// Update positions
|
|
$positions = explode( '|', sp_array_value( $meta, 'sp_position' ) );
|
|
wp_set_object_terms( $id, $positions, 'sp_position', false );
|
|
|
|
// Update leagues
|
|
$leagues = explode( '|', sp_array_value( $meta, 'sp_league' ) );
|
|
wp_set_object_terms( $id, $leagues, 'sp_league', false );
|
|
|
|
// Update seasons
|
|
$seasons = explode( '|', sp_array_value( $meta, 'sp_season' ) );
|
|
wp_set_object_terms( $id, $seasons, 'sp_season', false );
|
|
|
|
// Update teams
|
|
$teams = (array)explode( '|', sp_array_value( $meta, 'sp_team' ) );
|
|
$i = 0;
|
|
foreach ( $teams as $team ):
|
|
// Get or insert team
|
|
$team_object = get_page_by_title( $team, OBJECT, 'sp_team' );
|
|
if ( $team_object ):
|
|
if ( $team_object->post_status != 'publish' ):
|
|
wp_update_post( array( 'ID' => $team_object->ID, 'post_status' => 'publish' ) );
|
|
endif;
|
|
$team_id = $team_object->ID;
|
|
else:
|
|
$team_id = wp_insert_post( array( 'post_type' => 'sp_team', 'post_status' => 'publish', 'post_title' => $team ) );
|
|
// Flag as import
|
|
update_post_meta( $team_id, '_sp_import', 1 );
|
|
wp_set_object_terms( $team_id, $leagues, 'sp_league', false );
|
|
wp_set_object_terms( $team_id, $seasons, 'sp_season', false );
|
|
endif;
|
|
|
|
// Add team to player
|
|
add_post_meta( $id, 'sp_team', $team_id );
|
|
|
|
// Update current team if first in array
|
|
if ( $i == 0 ):
|
|
update_post_meta( $id, 'sp_current_team', $team_id );
|
|
endif;
|
|
|
|
$i++;
|
|
endforeach;
|
|
|
|
// Update nationality
|
|
$nationality = trim( strtolower( sp_array_value( $meta, 'sp_nationality' ) ) );
|
|
if ( $nationality == '*' ) $nationality = '';
|
|
update_post_meta( $id, 'sp_nationality', $nationality );
|
|
|
|
$this->imported++;
|
|
|
|
endforeach;
|
|
|
|
// Show Result
|
|
echo '<div class="updated settings-error below-h2"><p>
|
|
'.sprintf( __( 'Import complete - imported <strong>%s</strong> players and skipped <strong>%s</strong>.', 'sportspress' ), $this->imported, $this->skipped ).'
|
|
</p></div>';
|
|
|
|
$this->import_end();
|
|
}
|
|
|
|
/**
|
|
* Performs post-import cleanup of files and the cache
|
|
*/
|
|
function import_end() {
|
|
echo '<p>' . __( 'All done!', 'sportspress' ) . ' <a href="' . admin_url('edit.php?post_type=sp_player') . '">' . __( 'View Players', 'sportspress' ) . '</a>' . '</p>';
|
|
|
|
do_action( 'import_end' );
|
|
}
|
|
|
|
/**
|
|
* header function.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function header() {
|
|
echo '<div class="wrap"><h2>' . __( 'Import Players', 'sportspress' ) . '</h2>';
|
|
}
|
|
|
|
/**
|
|
* greet function.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function greet() {
|
|
echo '<div class="narrow">';
|
|
echo '<p>' . __( 'Hi there! Choose a .csv file to upload, then click "Upload file and import".', 'sportspress' ).'</p>';
|
|
echo '<p>' . sprintf( __( 'Players need to be defined with columns in a specific order (7 columns). <a href="%s">Click here to download a sample</a>.', 'sportspress' ), plugin_dir_url( SP_PLUGIN_FILE ) . 'dummy-data/players-sample.csv' ) . '</p>';
|
|
wp_import_upload_form( 'admin.php?import=sp_player_csv&step=1' );
|
|
echo '</div>';
|
|
}
|
|
}
|
|
}
|