nextcloud/apps/bookmarks/templates/bookmarklet.php

9 lines
657 B
PHP
Raw Normal View History

<?php
function createBookmarklet() {
2012-04-14 18:44:15 +04:00
$l = OC_L10N::get('bookmarks');
2012-02-23 02:53:54 +04:00
echo '<small>' . $l->t('Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:') . '</small>'
2012-05-02 01:19:39 +04:00
. '<a class="button bookmarklet" href="javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open(\'' . OCP\Util::linkToAbsolute('bookmarks', 'addBm.php') . '?output=popup&url=\'+c(b.location),\'bkmk_popup\',\'left=\'+((a.screenX||a.screenLeft)+10)+\',top=\'+((a.screenY||a.screenTop)+10)+\',height=230px,width=230px,resizable=1,alwaysRaised=1\');a.setTimeout(function(){d.focus()},300);})();">'
. $l->t('Read later') . '</a>';
}