gnu-social/plugins/LinkPreview
Diogo Peralta Cordeiro 6e031d623a [VersionBump] 2.0.0beta0
Updated composer and translations

composer install --no-dev
composer dump-autoload --optimize
git add vendor/ --force
make updatepo
2021-07-18 12:49:17 +01:00
..
actions [PLUGINS] Fixed oEmbed dependents to use Embed 2019-08-03 17:49:06 +01:00
locale [VersionBump] 2.0.0beta0 2021-07-18 12:49:17 +01:00
LinkPreviewPlugin.php [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 2021-07-16 19:44:36 +01:00
Makefile Makefile to compress LinkPreview's js 2010-12-22 15:04:50 -08:00
README [PLUGINS] Fixed oEmbed dependents to use Embed 2019-08-03 17:49:06 +01:00

README

The LinkPreview plugin adds a UI for previewing thumbnails from links.

Note: This plugin depends on the "Embed" plugin.

Installation
============
add "addPlugin('LinkPreview');"
to the bottom of your config.php

Settings
========
process_links: Whether to process links or not
thumbwidth: The width of the link preview
thumbheight: The height of the link preview

Example
=======
addPlugin('Embed'); // Dependency
$config['attachments']['process_links'] = true;
$config['attachments']['thumbwidth'] = 42;
$config['attachments']['thumbheight'] = 42;
addPlugin('LinkPreview');