Lines:
1 to 35 of 35
<?php /** * Email Template * * @package EDD * @subpackage Emails * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.0 */ // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) exit; /* function edd_get_email_templates() – Gets all the email templates that have been registerd. The list is extendable and more templates can be added. */ /* function edd_email_template_tags() – Email Template Tags */ /* function edd_email_preview_template_tags() – Email Preview Template Tags */ /* function edd_email_template_preview() – Email Template Preview */ add_action( 'edd_purchase_receipt_email_settings', 'edd_email_template_preview' ); /* function edd_display_email_template_preview() – Displays the email preview */ add_action( 'template_redirect', 'edd_display_email_template_preview' ); /* function edd_get_email_body_content() – Email Template Body */ /* function edd_get_sale_notification_body_content() – Sale Notification Template Body */ /* function edd_render_receipt_in_browser() – Render Receipt in the Browser */ add_action( 'edd_view_receipt', 'edd_render_receipt_in_browser' );