BundleNotBynderException.php in Bynder 8
File
src/Exception/BundleNotBynderException.php
View source
<?php
namespace Drupal\bynder\Exception;
use Drupal\Core\Url;
class BundleNotBynderException extends BynderException {
protected $adminPermission = 'administer entity browsers';
public function __construct($bundle) {
$log_message = 'Media bundle @bundle is not using Bynder plugin. 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);
}
}