/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views
NameSizeModeActions
Admin/-0755rm
Components/-0755rm
Form/-0755rm
Admin.php8000644editdlrm
IframeContentView.php27550644editdlrm
IframeView.php83770644editdlrm
Views.php7310644editdlrm
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(); ?> > <?php echo apply_filters('the_title', $this->title); ?> body; /** * Fire the action hook in footer */ do_action('give_embed_footer'); ?> body; } }