* @package block * @link https://www.zentao.net */ namespace zin; $content = array(); if(empty($actions)) { $content[] = div ( setClass('flex items-center justify-center h-64'), span ( setClass('text-gray'), $lang->action->noDynamic ) ); } else { $content[] = div ( setClass('flex-auto actions-box'), dynamic ( set::dynamics($actions), set::users($users) ) ); } panel ( setClass('dynamic-block'), set::title($block->title), to::headingActions ( a ( set('class', 'text-gray'), set('href', createLink('product', 'dynamic', 'productID=' . $productID)), $lang->more, icon('caret-right') ) ), $content ); render();