Lines:
1 to 32 of 32
<?php /** * HTML elements * * A helper class for outputting common HTML elements, such as product drop downs * * @package EDD * @subpackage Classes/HTML * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.5 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* class EDD_HTML_Elements */ /* function EDD_HTML_Elements::product_dropdown() – Renders an HTML Dropdown of all the Products (Downloads) */ /* function EDD_HTML_Elements::customer_dropdown() – Renders an HTML Dropdown of all customers */ /* function EDD_HTML_Elements::user_dropdown() – Renders an HTML Dropdown of all the Users */ /* function EDD_HTML_Elements::discount_dropdown() – Renders an HTML Dropdown of all the Discounts */ /* function EDD_HTML_Elements::category_dropdown() – Renders an HTML Dropdown of all the Categories */ /* function EDD_HTML_Elements::year_dropdown() – Renders an HTML Dropdown of years */ /* function EDD_HTML_Elements::month_dropdown() – Renders an HTML Dropdown of months */ /* function EDD_HTML_Elements::select() – Renders an HTML Dropdown */ /* function EDD_HTML_Elements::checkbox() – Renders an HTML Checkbox */ /* function EDD_HTML_Elements::text() – Renders an HTML Text field */ /* function EDD_HTML_Elements::date_field() – Renders a date picker */ /* function EDD_HTML_Elements::textarea() – Renders an HTML textarea */ /* function EDD_HTML_Elements::ajax_user_search() – Renders an ajax user search field */