'modal-sm|modal-lg|modal-xl' (default: 'modal-md')] * @param Smarty_Internal_Template $smarty * * @return string href attribute contents * @throws SmartyException */ function smarty_function_bootstrap_modal($params, $smarty) { $smarty->loadPlugin('smarty_function_service'); if (! empty($params['size'])) { $size = '" data-size="' . $params['size']; unset($params['size']); } else { $size = ''; } $params['modal'] = 1; $href = smarty_function_service($params, $smarty); return "$href\" data-bs-toggle=\"modal\" data-backdrop=\"static\" data-bs-target=\".modal.fade:not(.show)$size"; }