LinkStack/blocks/heading/handler.php

20 lines
461 B
PHP
Raw Normal View History

<?php
/**
* Handles the logic for "heading" link type.
*
* @param \Illuminate\Http\Request $request The incoming request.
* @param mixed $linkType The link type information.
* @return array The prepared link data.
*/
function handleLinkType($request, $linkType) {
// Prepare the link data
$linkData = [
'title' => $request->title,
'button_id' => "42",
'var1' => "1",
'var2' => "1",
];
return $linkData;
}