Lines:
1 to 32 of 32
<?php /** * Batch Import Class * * This is the base class for all batch import methods. Each data import type (customers, payments, etc) extend this class * * @package EDD * @subpackage Admin/Import * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 2.6 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* class EDD_Batch_Import */ /* function EDD_Batch_Import::__construct() – Get things started */ /* function EDD_Batch_Import::init() – Initialize the updater. Runs after import file is loaded but before any processing is done. */ /* function EDD_Batch_Import::can_import() – Can we import? */ /* function EDD_Batch_Import::get_columns() – Get the CSV columns */ /* function EDD_Batch_Import::get_first_row() – Get the first row of the CSV */ /* function EDD_Batch_Import::process_step() – Process a step */ /* function EDD_Batch_Import::get_percentage_complete() – Return the calculated completion percentage */ /* function EDD_Batch_Import::map_fields() – Map CSV columns to import fields */ /* function EDD_Batch_Import::get_list_table_url() – Retrieve the URL to the list table for the import data type */ /* function EDD_Batch_Import::get_import_type_label() – Retrieve the label for the import type. Example: Payments */ /* function EDD_Batch_Import::str_to_array() – Convert a string containing delimiters to an array */ /* function EDD_Batch_Import::convert_file_string_to_array() – Convert a files string containing delimiters to an array. */ /* function EDD_Batch_Import::trim_preview() – Trims a column value for preview */