/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views/IframeContentView.php (2755B)
title = $title;
return $this;
}
/**
* Set document page title.
*
* @param string $body
*
* @return IframeContentView $this
*/
public function setBody($body)
{
$this->body = $body;
return $this;
}
/**
* Set document page title.
*
* @param array $classes
*
* @return IframeContentView $this
*/
public function setBodyClasses($classes)
{
$this->bodyClasses = array_merge($this->bodyClasses, (array)$classes);
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();
?>
>
title); ?>
body;
/**
* Fire the action hook in footer
*/
do_action('give_embed_footer');
?>
body;
}
}