HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpmuhibbah/wp-content/plugins/give/src/DonationSummary/resources/views/summary.php
<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>