Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
give
/
src
/
MultiFormGoals
/
MultiFormGoal
:
Block.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Give\MultiFormGoals\MultiFormGoal; use Give\MultiFormGoals\MultiFormGoal\Model as MultiFormGoal; class Block { /** * Registers Multi-Form Goal block * * @since 2.9.0 **/ public function addBlock() { register_block_type( 'give/multi-form-goal', [ 'render_callback' => [$this, 'renderCallback'], ] ); } /** * Returns Progress Bar block markup * * @since 2.9.0 **/ public function renderCallback($attributes, $content) { $multiFormGoal = new MultiFormGoal( [ 'innerBlocks' => $content, ] ); return $multiFormGoal->getOutput(); } }