X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fentity_browser%2Fentity_browser.module;h=872164516d716a888751ac5c9fa4ab7c3da502e6;hb=refs%2Fheads%2Fd864;hp=b3b7dd00b855411f825f698f429076cf1aa9bab6;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/modules/contrib/entity_browser/entity_browser.module b/web/modules/contrib/entity_browser/entity_browser.module index b3b7dd00b..872164516 100644 --- a/web/modules/contrib/entity_browser/entity_browser.module +++ b/web/modules/contrib/entity_browser/entity_browser.module @@ -9,6 +9,29 @@ use \Drupal\Core\Form\FormStateInterface; use \Drupal\Core\Render\Element; use Drupal\Core\Url; use \Drupal\file\FileInterface; +use Drupal\Core\Routing\RouteMatchInterface; + +/** + * Implements hook_help(). + */ +function entity_browser_help($route_name, RouteMatchInterface $arg) { + switch ($route_name) { + case 'help.page.entity_browser': + $output = ''; + $output .= '

' . t('About') . '

'; + $output .= '

' . t('The Entity Browser module provides a generic entity browser/picker/selector. It can be used in any context where one needs to select a few entities and do something with them. For more information, see the online documentation for Entity Browser.', [':entity_browser-documentation' => 'https://drupal-media.gitbooks.io/drupal8-guide/content/modules/entity_browser/intro.html']) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('General') . '
'; + $output .= '
' . t('Entity browser comes with an example module that can be used as a starting point.') . '
'; + $output .= '
' . t('Example use cases') . '
'; + $output .= '
' . t('Powerfull entity reference widget') . '
'; + $output .= '
' . t('Embedding entities into wysiwyg') . '
'; + $output .= '
'; + + return $output; + } +} /** * Implements hook_theme(). @@ -110,7 +133,7 @@ function entity_browser_preprocess_page__entity_browser__modal(&$variables) { * See file_validate_image_resolution() */ function entity_browser_file_validate_image_resolution(FileInterface $file, $maximum_dimensions = 0, $minimum_dimensions = 0) { - $errors = array(); + $errors = []; // Check first that the file is an image. $image_factory = \Drupal::service('image.factory'); @@ -126,7 +149,7 @@ function entity_browser_file_validate_image_resolution(FileInterface $file, $max if (!$file->isPermanent() && $image->scale($width, $height)) { $image->save(); $file->filesize = $image->getFileSize(); - drupal_set_message(t('The image was resized to fit within the maximum allowed dimensions of %dimensions pixels.', array('%dimensions' => $maximum_dimensions))); + drupal_set_message(t('The image was resized to fit within the maximum allowed dimensions of %dimensions pixels.', ['%dimensions' => $maximum_dimensions])); } else { $errors[] = t('The image exceeds the maximum allowed dimensions.'); @@ -138,7 +161,7 @@ function entity_browser_file_validate_image_resolution(FileInterface $file, $max // Check that it is larger than the given dimensions. list($width, $height) = explode('x', $minimum_dimensions); if ($image->getWidth() < $width || $image->getHeight() < $height) { - $errors[] = t('The image is too small; the minimum dimensions are %dimensions pixels.', array('%dimensions' => $minimum_dimensions)); + $errors[] = t('The image is too small; the minimum dimensions are %dimensions pixels.', ['%dimensions' => $minimum_dimensions]); } } }