# give/4.15.3/src/DonorDashboards/Admin/SuccessNotice.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.15.3. 76 lines.

- Page: https://pluginprobe.com/plugins/give/4.15.3/code/src/DonorDashboards/Admin/SuccessNotice.php
- Raw: https://pluginprobe.com/plugins/give/4.15.3/raw/src/DonorDashboards/Admin/SuccessNotice.php
- Modified: 2021-11-23T23:55:18+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.15.3/code/src/DonorDashboards/Admin/SuccessNotice.php#L10-L20`.

```php
<?php

namespace Give\DonorDashboards\Admin;

class SuccessNotice
{

    /**
     * Reigster success notice
     *
     * @since 2.10.0
     * @return void
     *
     */
    public function register()
    {
        if ($this->shouldRenderOutput()) {
            $this->renderOutput();
        }
    }

    /**
     * Return true if notice should be rendered, false if not
     *
     * @since 2.10.0
     * @return boolean
     *
     */
    protected function shouldRenderOutput()
    {
        return isset($_GET['give-generated-donor-dashboard-page']);
    }

    /**
     * Render notice output
     *
     * @since 2.10.0
     * @return void
     *
     */
    protected function renderOutput()
    {
        echo $this->getOutput();
    }

    /**
     * Get notice output
     *
     * @since 2.10.0
     * @return string
     *
     */
    protected function getOutput()
    {
        ob_start();
        $output = '';
        require $this->getTemplatePath();
        $output = ob_get_contents();
        ob_end_clean();

        return $output;
    }

    /**
     * Get template path for notice output
     *
     * @since 2.10.0
     * @return string
     *
     */
    protected function getTemplatePath()
    {
        return GIVE_PLUGIN_DIR . '/src/DonorDashboards/resources/views/successnotice.php';
    }
}

```
