Lines:
1 to 37 of 37
<?php /** * License handler for Easy Digital Downloads * * This class should simplify the process of adding license information * to new EDD extensions. * * @version 1.1 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; if ( ! class_exists( 'EDD_License' ) ) : /* class EDD_License */ /* function EDD_License::__construct() – Class constructor */ /* function EDD_License::includes() – Include the updater class */ /* function EDD_License::hooks() – Setup hooks */ /* function EDD_License::auto_updater() – Auto updater */ /* function EDD_License::settings() – Add license field to settings */ /* function EDD_License::license_help_text() – Display help text at the top of the Licenses tag */ /* function EDD_License::maybe_set_pass_flag() – If the supplied license key is for a pass, updates the `edd_pass_licenses` option with the pass ID and the date it was checked. */ /* function EDD_License::maybe_remove_pass_flag() – Removes the pass flag for the supplied license. This happens when a license is deactivated. */ /* function EDD_License::activate_license() – Activate the license key */ /* function EDD_License::deactivate_license() – Deactivate the license key */ /* function EDD_License::weekly_license_check() – Check if license key is valid once per week */ /* function EDD_License::notices() – Admin notices for errors */ /* function EDD_License::plugin_row_license_missing() – Displays message inline on plugin row that the license key is missing */ /* function EDD_License::register_beta_support() – Adds this plugin to the beta page */ /* function EDD_License::filter_sl_api_params() – Adds the EDD version to the API parameters. */ endif; // end class_exists check