Update docblocks

This commit is contained in:
Mike Jolley 2014-02-14 13:02:37 +00:00
parent 8b4c81da13
commit 84e754e298
14 changed files with 78 additions and 22 deletions

View File

@ -1,4 +1,6 @@
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Admin Report
*
@ -9,12 +11,6 @@
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* WC_Admin_Report Class
*/
class WC_Admin_Report {
public $chart_interval;

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Coupon_Usage class
* WC_Report_Coupon_Usage
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Coupon_Usage extends WC_Admin_Report {

View File

@ -8,7 +8,12 @@ if ( ! class_exists( 'WP_List_Table' ) ) {
}
/**
* WC_Report_Customer_List class
* WC_Report_Customer_List
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Customer_List extends WP_List_Table {

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Customers class
* WC_Report_Customers
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Customers extends WC_Admin_Report {

View File

@ -6,9 +6,12 @@ if ( ! class_exists( 'WC_Report_Stock' ) )
require_once( 'class-wc-report-stock.php' );
/**
* WC_Report_Low_In_Stock class
* WC_Report_Low_In_Stock
*
* @extends WC_Report_Stock
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Low_In_Stock extends WC_Report_Stock {

View File

@ -6,9 +6,12 @@ if ( ! class_exists( 'WC_Report_Stock' ) )
require_once( 'class-wc-report-stock.php' );
/**
* WC_Report_Most_Stocked class
* WC_Report_Most_Stocked
*
* @extends WC_Report_Stock
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Most_Stocked extends WC_Report_Stock {

View File

@ -6,9 +6,12 @@ if ( ! class_exists( 'WC_Report_Stock' ) )
require_once( 'class-wc-report-stock.php' );
/**
* WC_Report_Out_Of_Stock class
* WC_Report_Out_Of_Stock
*
* @extends WC_Report_Stock
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Out_Of_Stock extends WC_Report_Stock {

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Sales_By_Category class
* WC_Report_Sales_By_Category
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Sales_By_Category extends WC_Admin_Report {

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Sales_By_Date class
* WC_Report_Sales_By_Date
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Sales_By_Date extends WC_Admin_Report {

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Sales_By_Product class
* WC_Report_Sales_By_Product
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Sales_By_Product extends WC_Admin_Report {

View File

@ -6,7 +6,12 @@ if ( ! class_exists( 'WP_List_Table' ) )
require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
/**
* WC_Report_Stock class
* WC_Report_Stock
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Stock extends WP_List_Table {

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Taxes_By_Code class
* WC_Report_Taxes_By_Code
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Taxes_By_Code extends WC_Admin_Report {

View File

@ -1,6 +1,11 @@
<?php
/**
* WC_Report_Taxes_By_Date class
* WC_Report_Taxes_By_Date
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @version 2.1.0
*/
class WC_Report_Taxes_By_Date extends WC_Admin_Report {

View File

@ -1,6 +1,12 @@
<?php
/**
* WC_Frontend_Scripts
* Handle frontend forms
*
* @class WC_Frontend_Scripts
* @version 2.1.0
* @package WooCommerce/Classes/
* @category Class
* @author WooThemes
*/
class WC_Frontend_Scripts {