2, 'title' => __('Events List', 'connector-mobilizon'), 'description' => __('A list of the upcoming events of the connected Mobilizon instance.', 'connector-mobilizon'), 'category' => 'widgets', 'icon' => 'list-view', 'supports' => [ 'html' => false ], 'attributes' => [ 'eventsCount' => [ 'type' => 'number', 'default' => 3, ], 'groupName' => [ 'type' => 'string', ], ], 'editor_script' => $scriptName, 'render_callback' => 'MobilizonConnector\EventsListBlock::render', ]); return $scriptName; } public static function render($block_attributes, $content) { $classNamePrefix = NAME; $eventsCount = $block_attributes['eventsCount']; $groupName = isset($block_attributes['groupName']) ? $block_attributes['groupName'] : ''; ob_start(); require dirname(__DIR__) . '/view/events-list.php'; $output = ob_get_clean(); return $output; } }