cfoellmann / PDFEmbed

"Fork" of Mediawiki PDF Embed extension

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PDFEmbed

This is a "fork" of https://gitlab.com/hydrawiki/extensions/PDFEmbed. It tries to fix https://gitlab.com/hydrawiki/extensions/PDFEmbed/-/issues/19

PDFEmbed allows Adobe Acrobat PDF files to be embedded into a wiki article using tags. The PDF file extension is automatically added and necessarily default permissions are configured. Future functionality will allow this extension to act as a media handler for PDF files.

Installation

To install this extension, add the following to the end of the LocalSettings.php file:

//PDFEmbed
wfLoadExtension('PDFEmbed');

Composer installation: composer.local.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/WolfgangFahl/PDFEmbed"
    }
  ],
  "require": {
    "WolfgangFahl/PDFembed": "*"
  },
  "extra": {
    "merge-plugin": {
      "include": [
        "extensions/*/composer.json",
        "skins/*/composer.json"
      ]
    }
  }
}

Configuration

If the default configuration needs to be altered add these settings to the LocalSettings.php file below the require:

//Default width for the PDF object container.
$wgPdfEmbed['width'] = 800;

//Default height for the PDF object container.
$wgPdfEmbed['height'] = 1090;

About

"Fork" of Mediawiki PDF Embed extension

License:GNU Lesser General Public License v3.0


Languages

Language:PHP 100.0%