* Copyright (c) 2011 Arthur Schiwon * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ $bookmarkleturl = $_['bookmarkleturl']; $bookmarkletscript = bookmarklet($bookmarkleturl); function bookmarklet($bookmarkleturl) { $l = new OC_l10n('bookmarks'); $blet = "javascript:(function(){var a=window,b=document,c=encodeURIComponent,e=c(document.title),d=a.open('"; $blet .= $bookmarkleturl; $blet .= "?output=popup&url='+c(b.location)+'&title='+e,'bkmk_popup','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=400px,width=550px,resizable=1,alwaysRaised=1');a.setTimeout(function(){d.focus()},300);})();"; $help_msg = $l->t('Drag this to your browser bookmarks and click it, when you want to bookmark a webpage quickly:'); $output = '
' . $help_msg . '
' . $l->t('Add to ownCloud') . ''; return $output; } ?>