30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-09-23 02:29:07 +00:00

fix copy/paste

This commit is contained in:
chmst 2022-09-04 15:42:21 +02:00
parent 0c5ba2d4bc
commit 464871b9f7

View File

@ -108,19 +108,20 @@ $listDirn = $this->escape($this->state->get('list.direction'));
// Open in a popup window // Open in a popup window
$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' . $this->escape($width) . ',height=' . $this->escape($height) . ''; $attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' . $this->escape($width) . ',height=' . $this->escape($height) . '';
echo "<a href=\"$link\" onclick=\"window.open(this.href, 'targetWindow', '" . $attribs . "'); return false;\">" . echo "<a href=\"$link\" onclick=\"window.open(this.href, 'targetWindow', '" . $attribs . "'); return false;\">" .
$this->escape($item->title) . '</a>'; $this->escape($item->title) . '</a>';
break; break;
case 3: case 3:
// Open in a modal window // Open in a modal window
$modalId = 'weblink-item-modal-' . $item->id; $modalId = 'weblink-item-modal-' . $item->id;
$modalParams['title'] = $this->escape($item->title); $modalParams['title'] = $this->escape($item->title);
$modalParams['url'] = $link; $modalParams['url'] = $link;
$modalParams['heig$this->escape($item->title)ht'] = '100%'; $modalParams['height'] = '100%';
$modalParams['width'] = '100%'; $modalParams['width'] = '100%';
$modalParams['bodyHeight'] = 70; $modalParams['bodyHeight'] = 70;
$modalParams['modalWidth'] = 80; $modalParams['modalWidth'] = 80;
echo HTMLHelper::_('bootstrap.renderModal', $modalId, $modalParams); echo HTMLHelper::_('bootstrap.renderModal', $modalId, $modalParams);
echo '<a role="button" class="' . $menuclass . '" data-bs-toggle="modal" data-bs-target="#' . $modalId . '">' . $this->escape($item->title) . '</a>'; echo '<a role="button" class="' . $menuclass . '" data-bs-toggle="modal" data-bs-target="#' . $modalId . '">' .
$this->escape($item->title) . ' </a>';
break; break;
default: default:
// Open in parent window // Open in parent window