Spamworldpro Mini Shell
Spamworldpro


Server : Apache/2.4.52 (Ubuntu)
System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
User : www-data ( 33)
PHP Version : 8.1.2-1ubuntu2.21
Disable Function : NONE
Directory :  /var/www/theprintave/wp-content/plugins/dokan-lite/templates/emails/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/theprintave/wp-content/plugins/dokan-lite/templates/emails/reverse-withdrawal-invoice.php
<?php
/**
 * Monthly Reverse Withdrawal Invoice Template.
 *
 * Vendors Will get this email once in a month.
 *
 * @class ReverseWithdrawalInvoice
 *
 * @package \WeDevs\Dokan\Emails\ReverseWithdrawalInvoice
 *
 * @since 3.5.1
 *
 * @var $seller_info \WeDevs\Dokan\Vendor\Vendor
 * @var $due_status array
 * @var $data array
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

do_action( 'woocommerce_email_header', $email_heading, $email ); ?>

<p>
    <?php
    // translators: 1) store name
    printf( esc_html__( 'Hi %s,', 'dokan-lite' ), esc_html( $seller_info->get_shop_name() ) );
    ?>
</p>
<p>
    <?php
    printf(
        // translators: 1) invoice month 2) invoice year 3) store name
        esc_html__( 'Your %1$s %2$s invoice is now available for store: %3$s.', 'dokan-lite' ),
        esc_html( $data['{month}'] ), esc_html( $data['{year}'] ), esc_html( $seller_info->get_shop_name() )
    );
    ?>
</p>
<hr>
<ul>
    <li>
        <strong>
            <?php
            // translators: 1) store name
            printf( esc_html__( 'Summary for %1$s: ', 'dokan-lite' ), esc_html( $seller_info->get_shop_name() ) );
            ?>
        </strong>
    </li>
    <li>
        <strong>
            <?php
            printf(
                // translators: 1) invoice month 2) invoice year
                esc_html__( 'Reverse withdrawal charges for %1$s %2$s:', 'dokan-lite' ),
                esc_html( $data['{month}'] ), esc_html( $data['{year}'] )
            );
            ?>
        </strong>
        <?php echo wp_kses_post( wc_price( $due_status['balance']['payable_amount'] ) ); ?>
    </li>
    <li>
        <strong>
            <?php esc_html_e( 'Due Date: ', 'dokan-lite' ); ?>
        </strong>
        <?php echo 'immediate' === $due_status['due_date'] ? esc_html( ucfirst( $due_status['due_date'] ) ) : esc_html( dokan_format_date( $due_status['due_date'] ) ); ?>
    </li>
</ul>

<p>
    <?php
    printf(
        wp_kses(
            '<a href="' . $data['{reverse_withdrawal_url}'] . '">' . esc_html__( 'Pay Now', 'dokan-lite' ) . '</a>',
            array(
                'a' => array(
                    'href' => array(),
                ),
            )
        )
    );
    ?>
</p>

<?php
/**
 * Show user-defined additional content - this is set in each email's settings.
 */
if ( ! empty( $additional_content ) ) {
    echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
}

do_action( 'woocommerce_email_footer', $email );

Spamworldpro Mini