Lines:
1 to 35 of 35
<?php /** * Easy Digital Downloads WP-CLI * * This class provides an integration point with the WP-CLI plugin allowing * access to EDD from the command line. * * @packageEDD * @subpackageClasses/CLI * @copyrightCopyright (c) 2015, Pippin Williamson * @licensehttp://opensource.org/license/gpl-2.0.php GNU Public License * @since2.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; WP_CLI::add_command( 'edd', 'EDD_CLI' ); /* class EDD_CLI */ /* function EDD_CLI::__construct() – */ /* function EDD_CLI::details() – Get EDD details */ /* function EDD_CLI::stats() – Get stats for your EDD site */ /* function EDD_CLI::products() – Get the products currently posted on your EDD site */ /* function EDD_CLI::customers() – Get the customers currently on your EDD site. Can also be used to create customers records */ /* function EDD_CLI::sales() – Get the recent sales for your EDD site */ /* function EDD_CLI::discounts() – Get discount details for on your EDD site */ /* function EDD_CLI::payments() – Create sample purchase data for your EDD site */ /* function EDD_CLI::download_logs() – Create sample file download log data for your EDD site */ /* function EDD_CLI::get_fname() – */ /* function EDD_CLI::get_lname() – */ /* function EDD_CLI::get_domain() – */ /* function EDD_CLI::get_tld() – */