Lines:
1 to 61 of 61
<?php /** * Plugin Name: Easy Digital Downloads * Plugin URI: https://easydigitaldownloads.com * Description: The easiest way to sell digital products with WordPress. * Author: Easy Digital Downloads * Author URI: https://easydigitaldownloads.com * Version: 3.1.0.2 * Text Domain: easy-digital-downloads * Domain Path: languages * Requires PHP: 5.6 * * Easy Digital Downloads is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * any later version. * * Easy Digital Downloads is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Easy Digital Downloads. If not, see <http://www.gnu.org/licenses/>. * * @package EDD * @category Core * @author Easy Digital Downloads * @version 3.1.0.1.1 */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /* class EDD_Requirements_Check */ /* function EDD_Requirements_Check::__construct() – Setup plugin requirements */ /* function EDD_Requirements_Check::quit() – Quit without loading */ /* function EDD_Requirements_Check::load() – Load normally */ /* function EDD_Requirements_Check::install() – Install, usually on an activation hook. */ /* function EDD_Requirements_Check::bootstrap() – Bootstrap everything. */ /* function EDD_Requirements_Check::unmet_requirements_url() – Plugin specific URL for an external requirements page. */ /* function EDD_Requirements_Check::unmet_requirements_text() – Plugin specific text to quickly explain what’s wrong. */ /* function EDD_Requirements_Check::unmet_requirements_description_text() – Plugin specific text to describe a single unmet requirement. */ /* function EDD_Requirements_Check::unmet_requirements_missing_text() – Plugin specific text to describe a single missing requirement. */ /* function EDD_Requirements_Check::unmet_requirements_link() – Plugin specific text used to link to an external requirements page. */ /* function EDD_Requirements_Check::unmet_requirements_label() – Plugin specific aria label text to describe the requirements link. */ /* function EDD_Requirements_Check::unmet_requirements_name() – Plugin specific text used in CSS to identify attribute IDs and classes. */ /* function EDD_Requirements_Check::plugin_row_notice() – Plugin agnostic method to output the additional plugin row */ /* function EDD_Requirements_Check::unmet_requirements_description() – Plugin agnostic method used to output all unmet requirement information */ /* function EDD_Requirements_Check::unmet_requirement_description() – Plugin agnostic method to output specific unmet requirement information */ /* function EDD_Requirements_Check::admin_head() – Plugin agnostic method to output unmet requirements styling */ /* function EDD_Requirements_Check::plugin_row_links() – Plugin agnostic method to add the "Requirements" link to row actions */ /* function EDD_Requirements_Check::check() – Plugin specific requirements checker */ /* function EDD_Requirements_Check::met() – Have all requirements been met? */ /* function EDD_Requirements_Check::load_textdomain() – Plugin specific text-domain loader. */ /* function EDD_Requirements_Check::load_old_textdomain() – Load a .mo file for the old textdomain if one exists. */ // Invoke the checker new EDD_Requirements_Check();