PHP Classes

File: templates/wpcf-campaign-perks-template.php

Recommend this page to a friend!
  Classes of TJ Webb   WP Crowd Fund   templates/wpcf-campaign-perks-template.php   Download  
File: templates/wpcf-campaign-perks-template.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: WP Crowd Fund
Promote crowd-funding campaigns on WordPress sites
Author: By
Last change:
Date: 12 days ago
Size: 803 bytes
 

Contents

Class file image Download
<ul class="wpcf-campaign-perks">
    <?php foreach($perks as $perk): ?>
<li>
            <div class="wpcf-perk-amount"><?php wpcf_perk_amount($perk); ?></div>
            <div class="wpcf-perk-title"><?php wpcf_perk_title($perk); ?></div>
            <div class="wpcf-perk-description"><?php wpcf_perk_description($perk); ?></div>
            <div class="wpcf-perk-remaining"><?php wpcf_perk_remaining($perk); ?></div>
            <div class="wpcf-perk-contribute"><input type="button"
                class="<?php wpcf_perk_button_required_classes(); echo wpcf_perk_soldout($perk) ? 'wpcf-perk-soldout' : 'wpcf-perk-contribute'; ?> "
                value="<?php echo wpcf_perk_soldout($perk) ? __('Sold Out', 'wp crowd fund') : __('Contribute Now', 'wp crowd fund'); ?> "
                id="<?php wpcf_perk_button_required_id($perk); ?>" /></div>
        </li>
    <?php endforeach; ?>
</ul>