diff --git a/plupload.install b/plupload.install new file mode 100644 index 0000000..6f1c1bb --- /dev/null +++ b/plupload.install @@ -0,0 +1,26 @@ + $library['title'], + 'value' => t('The library !link is installed', array('!link' => l('plupload', $library['website']))), + 'severity' => REQUIREMENT_OK, + ); + } + else { + $requirements['plupload'] = array( + 'title' => $library['title'], + 'value' => t('Please install !link.', array('!link' => l('plupload', $library['website']))), + 'severity' => REQUIREMENT_ERROR, + ); + } + } + return $requirements; +}