![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/give/src/DonationSummary/resources/views/ |
<style> .give-donation-summary-table-wrapper { --primary-color: <?php echo $this->getPrimaryColor(); ?>; } </style> <div class="give-donation-summary-section"> <?php if ($heading = $this->getSummaryHeading()): ?> <div class="heading"><?php echo $heading; ?></div> <?php endif; ?> <div class="give-donation-summary-table-wrapper"> <table> <thead> <tr> <th><?php _e('Donation Summary', 'give'); ?></th> <th> <?php if ($this->isMultiStep()): ?> <button type="button" class="back-btn" onclick="GiveDonationSummary.handleNavigateBack(event)"> <?php _e('Edit Donation', 'give'); ?> <?php include plugin_dir_path(__DIR__) . 'images/pencil.svg'; ?> </button> <?php endif ?> </th> </tr> </thead> <tbody> <!-- PAYMENT AMOUNT --> <tr> <td> <div><?php _e('Payment Amount', 'give'); ?></div> </td> <td data-tag="amount"></td> </tr> <!-- GIVING FREQUENCY --> <tr> <td> <div><?php _e('Giving Frequency', 'give'); ?></div> <?php if ($this->isRecurringEnabled()): ?> <span class="give-donation-summary-help-text js-give-donation-summary-frequency-help-text"> <img src="<?php echo GIVE_PLUGIN_URL . 'src/DonationSummary/resources/images/info.svg'; ?>" alt=""> <span> <?php $isMultiStep = $this->isMultiStep(); /* translators: 1: <button> open tag when multi-step 2: close tag when multi-step. */ echo sprintf( __('Consider making this donation %srecurring%s', 'give'), $isMultiStep ? '<button type="button" class="back-btn" onclick="GiveDonationSummary.handleNavigateBack(event)">' : '', $isMultiStep ? '</button>' : '' ); ?> </span> </span> <?php endif; ?> </td> <td> <span data-tag="recurring"></span> <span data-tag="frequency"><?php _e('One time', 'give'); ?></span> </td> </tr> <!-- COVER DONATION FEES --> <?php if ($this->isFeeRecoveryEnabled()): ?> <tr class="js-give-donation-summary-fees"> <td> <div><?php echo __('Cover Donation Fees', 'give'); ?></div> <span class="give-donation-summary-help-text"> <img src="<?php echo GIVE_PLUGIN_URL . 'src/DonationSummary/resources/images/info.svg'; ?>" alt=""> <?php _e('Ensures 100% of your donation reaches our cause', 'give'); ?> </span> </td> <td data-tag="fees">{fees}</td> </tr> <?php endif; ?> </tbody> <tfoot> <!-- TOTAL DONATION AMOUNT (INCLUDING FEES) --> <tr> <th><?php _e('Donation Total', 'give'); ?></th> <th data-tag="total"></th> </tr> </tfoot> </table> </div> </div>