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_err/wp-content/plugins/give/src/Views/IframeContentView.php
<?php
/**
 * Handle form template view skin.
 *
 * @package Give
 */

namespace Give\Views;

/**
 * Class IframeView
 *
 * @package Give
 * @since 2.7.0
 */
class IframeContentView
{
    /**
     * Document page title.
     *
     * This will be use to setup title tag.
     *
     * @since 2.7.0
     * @var string
     */
    protected $title;

    /**
     * Document page body.
     *
     * This will be use to setup content of body tag.
     *
     * @since 2.7.0
     * @var string
     */
    protected $body;

    /**
     * Body classes.
     *
     * This will be use to setup body tag classes.
     *
     * @since 2.7.0
     * @var array
     */
    protected $bodyClasses = ['give-form-templates'];

    /**
     * Post ID.
     *
     * This will be use as parameter for 'the_title' filter.
     *
     * @since 2.22.1
     * @var int
     */
    protected $postId;

    /**
     * Set document page title.
     *
     * @param string $title
     *
     * @return IframeContentView $this
     */
    public function setTitle($title)
    {
        $this->title = $title;

        return $this;
    }

    /**
     * Set document page body.
     *
     * @param string $body
     *
     * @return IframeContentView $this
     */
    public function setBody($body)
    {
        $this->body = $body;

        return $this;
    }

    /**
     * Set body classes.
     *
     * @param array $classes
     *
     * @return IframeContentView $this
     */
    public function setBodyClasses($classes)
    {
        $this->bodyClasses = array_merge($this->bodyClasses, (array)$classes);

        return $this;
    }

    /**
     * Set post ID.
     *
     * @param $postId
     *
     * @since 2.22.1
     * @return IframeContentView $this
     */
    public function setPostId($postId)
    {
        $this->postId = $postId;

        return $this;
    }

    /**
     * Render view.
     *
     * Note: if you want to overwrite this function then do not forget to add action hook in footer and header.
     * We use these hooks to manipulated donation form related actions.
     *
     * @since 2.7.0
     */
    public function render()
    {
        ob_start();
        ?>
        <!DOCTYPE html>
        <html <?php
        language_attributes(); ?>>
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title><?php
                echo apply_filters('the_title', $this->title, $this->postId); ?></title>
            <?php
            /**
             * Fire the action hook in header
             */
            do_action('give_embed_head');
            ?>
        </head>
        <body class="<?php
        echo implode(' ', $this->bodyClasses); ?>">
        <?php
        echo $this->body;

        /**
         * Fire the action hook in footer
         */
        do_action('give_embed_footer');
        ?>
        </body>
        </html>
        <?php
        return ob_get_clean();
    }

    /**
     * Render only body html tag children of view.
     *
     * @since 2.7.0
     */
    public function renderBody()
    {
        return $this->body;
    }
}