You are here

class BundleNotExistException in Bynder 8.2

Same name and namespace in other branches
  1. 8.3 src/Exception/BundleNotExistException.php \Drupal\bynder\Exception\BundleNotExistException
  2. 8 src/Exception/BundleNotExistException.php \Drupal\bynder\Exception\BundleNotExistException
  3. 4.0.x src/Exception/BundleNotExistException.php \Drupal\bynder\Exception\BundleNotExistException

Exception indicating that the selected bundle does not exist.

Hierarchy

Expanded class hierarchy of BundleNotExistException

2 files declare their use of BundleNotExistException
BynderUpload.php in src/Plugin/EntityBrowser/Widget/BynderUpload.php
BynderWidgetBase.php in src/Plugin/EntityBrowser/Widget/BynderWidgetBase.php

File

src/Exception/BundleNotExistException.php, line 10

Namespace

Drupal\bynder\Exception
View source
class BundleNotExistException extends BynderException {

  /**
   * {@inheritdoc}
   */
  protected $adminPermission = 'administer entity browsers';

  /**
   * Constructs BundleNotExistException.
   *
   * @param string $bundle
   *   Name of the bundle.
   */
  public function __construct($bundle) {
    $log_message = 'Media type @bundle does not exist. Please fix the Bynder <a href=":eb_conf">search widget configuration</a>.';
    $log_message_args = [
      ':eb_conf' => Url::fromRoute('entity.entity_browser.collection')
        ->toString(),
      '@bundle' => $bundle,
    ];
    $admin_message = $this
      ->t($log_message, $log_message_args);
    $message = $this
      ->t('Bynder integration is not configured correctly. Please contact the site administrator.');
    parent::__construct($message, $admin_message, $log_message, $log_message_args);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BundleNotExistException::$adminPermission protected property Admin permission related to this exception. Overrides BynderException::$adminPermission
BundleNotExistException::__construct public function Constructs BundleNotExistException. Overrides BynderException::__construct
BynderException::$adminMessage protected property User-facing for admin users.
BynderException::$logMessage protected property Message to be logged in the Drupal's log.
BynderException::$logMessageArgs protected property Arguments for the log message.
BynderException::displayMessage public function Displays message to the user.
BynderException::logException public function Logs exception into Drupal's log.
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.