# give/4.16.9/src/MultiFormGoals/resources/views/multiformgoal.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 34 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/MultiFormGoals/resources/views/multiformgoal.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/MultiFormGoals/resources/views/multiformgoal.php
- Modified: 2023-01-18T19:19:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/MultiFormGoals/resources/views/multiformgoal.php#L10-L20`.

```php
<?php
/**
 * Multi-Form Goals block/shortcode template
 * Styles for this template are defined in 'blocks/multi-form-goals/common.scss'
 * @var Give\MultiFormGoals\MultiFormGoal\Model $this
 */
?>


<?php
if ( ! empty($this->getInnerBlocks())) {
    echo $this->getInnerBlocks();
} else {
    ?>
    <div class="give-multi-form-goal-block">
        <div class="give-multi-form-goal-block__content">
            <div class="give-multi-form-goal-block__image">
                <img src="<?= esc_url($this->getImageSrc()) ?>"  alt="goal image"/>
            </div>
            <div class="give-multi-form-goal-block__text">
                <h2>
                    <?= esc_html($this->getHeading()) ?>
                </h2>
                <p>
                    <?= esc_html($this->getSummary()) ?>
                </p>
            </div>
        </div>
        <?php
        echo $this->getProgressBarOutput(); ?>
    </div>
<?php
} ?>

```
