Extension:GoogleDocTag
GoogleDocTag Release status: beta |
|
---|---|
Implementation | Tag |
Description | Introduces <gdoc> tags for inserting Google Docs |
Author(s) | Redeko (Redekopmarktalk) |
Maintainer(s) | Sophivorus |
Latest version | 0.6 (2018-09-01) |
MediaWiki | 1.29+ |
PHP | 5.3+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
<gdoc> <googledoc> |
|
Quarterly downloads | 0 |
Translate the GoogleDocTag extension if it is available at translatewiki.net | |
If you are using version 0.5 or earlier of this extensions you are advised to immediately upgrade to the recent version of this extension to mitigate a security vulnerability.
The GoogleDocTag extension inserts Google Docs into any wiki page.
Installation
edit- Download and move the extracted
GoogleDocTag
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/GoogleDocTag - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'GoogleDocTag' );
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Use
editThe most simple code is: <gdoc id="your-google-doc-id" />
, which inserts the Google Doc into the page.
The tags also accept parameters "width" and "height" for setting the width and height of the displayed document. The defaults are 100% for width, and 1000px for height. An example using both width and height is: <gdoc id="your-google-doc-id" width="800" height="600" />
<googledoc>
can also be used in place of <gdoc>
.