Moodle Plugins directory: PDF.js Folder | Moodle.org
PDF.js Folder
Activities ::: mod_pdfjsfolder
Maintained by
André Camacho
PDF.js Folder is a plugin intended to make sure that added PDF files always open in the browser.
Latest release:
74 sites
96 downloads
36 fans
Current versions available: 1
PDF.js folder is a Moodle 4.5+ plugin intended to make sure that PDF files always open in the browser (with the option of downloading), regardless of if the user is using a desktop or mobile device and giving each student the same features.
- How PDFs are opened in browsers seem to depend on many things, like which browser the user is using, the configuration of PDF readers and which operating system is being used. To a smaller degree, it depends on the settings in Moodle.
- In most cases, the handling of PDFs should be left under the control of the user but in some cases there are valid reasons to try to standardize the experience.
PDF.js folder is built on PDF.js:
- PDF.js is Portable Document Format (PDF) viewer that is built with HTML5.
- PDF.js is community-driven and supported by Mozilla Labs. Our goal is to create a general-purpose, web standards-based platform for parsing and rendering PDFs.
- PDF.js, can perform poorly on mobile devices with limited memory and processing power. Some PDFs are fine but others are too big, to complex, contain too many images, etc. Your mileage may vary.
PDF.js folder works much like the regular folder resource in Moodle, but only files with .pdf type(s) can be uploaded.
There are a few options, allowing you to chose if :
- Files should open in the current tab/window or in a new one
- Subfolders should be shown expanded or not
- Download links should be displayed for each PDF file
- A warning about changes made in PDF.js not being saved/persisted should be shown on activity page
- PDF.js should use the legacy viewer* or modern one
*Legacy viewer exists because PDF files have some problems showing in the modern PDF.js viewer on some specific computers (MacOS 13/14 with Safe Exam Browser 3.6 for example).
Useful links
Contributors
André Camacho (Lead maintainer)
Jonas Nockert: Original author
Please login to view contributors details and/or to contact them
Can this plugin be used for Moodle 2.9+?
in addition we have restricted pdfjs - no save, no print, no copy
It's worked on my Moodle 3.7.2+ (Build: 20191025)
Installation aborted due to validation failure,
Installation aborted due to validation failure,
What to do?
--- mod/pdfjsfolder/version.php.orig 2020-05-07 16:30:28.370170868 +0900
+++ mod/pdfjsfolder/version.php 2020-05-07 16:30:50.806427814 +0900
@@ -27,9 +27,9 @@
defined('MOODLE_INTERNAL') || die();
-$module->version = 2013120300;
-$module->requires = 2012120300;
-$module->cron = 0;
-$module->component = 'mod_pdfjsfolder';
-$module->maturity = MATURITY_BETA;
-$module->release = '0.14';
+$plugin->version = 2013120300;
+$plugin->requires = 2012120300;
+$plugin->cron = 0;
+$plugin->component = 'mod_pdfjsfolder';
+$plugin->maturity = MATURITY_BETA;
+$plugin->release = '0.14';
--- mod/pdfjsfolder/lib.php.orig 2020-05-07 16:35:25.249570732 +0900
+++ mod/pdfjsfolder/lib.php 2020-05-07 21:50:38.558981806 +0900
@@ -433,7 +433,7 @@
function pdfjsfolder_cm_info_dynamic(cm_info $cm) {
// The field 'customdata' is filled in only if folder is to be
// shown inline.
- if ($cm->get_custom_data()) {
+ if ($cm->customdata) {
$cm->set_no_view_link();
}
}
@@ -448,7 +448,7 @@
global $PAGE, $DB;
if ($cm->uservisible &&
- $cm->get_custom_data() &&
+ $cm->customdata &&
has_capability('mod/pdfjsfolder:view', $cm->context)) {
require_once(dirname(__FILE__) . '/locallib.php');
I received a message that says my post is not clear, so I rewrite the post to show how you should modify the pdf.js files:
In version.php under mod/pdfjsfolder/ , find the lines like
$module->version = 2013120300;
$module->requires = 2012120300;
$module->cron = 0;
$module->component = 'mod_pdfjsfolder';
$module->maturity = MATURITY_BETA;
$module->release = '0.14';
and modify them to
$plugin->version = 2013120300;
$plugin->requires = 2012120300;
$plugin->cron = 0;
$plugin->component = 'mod_pdfjsfolder';
$plugin->maturity = MATURITY_BETA;
$plugin->release = '0.14';
In lib.php under mod/pdfjsfolder/ , find the line like
if ($cm->get_custom_data()) {
and modify it to
if ($cm->customdata) {
and also find the line like
$cm->get_custom_data() &&
and modify it to
$cm->customdata &&
That is all you have to do to make PDF.js Folder installable.
You can download it on my github onyet/onyetmpdf