class Mail in Social simple 8
Same name and namespace in other branches
- 2.0.x src/SocialNetwork/Mail.php \Drupal\social_simple\SocialNetwork\Mail
The Mail button.
Hierarchy
- class \Drupal\social_simple\SocialNetwork\Mail implements SocialNetworkInterface uses StringTranslationTrait
Expanded class hierarchy of Mail
2 string references to 'Mail'
- Mail::getLabel in src/
SocialNetwork/ Mail.php - Get the network name.
- social_simple.services.yml in ./
social_simple.services.yml - social_simple.services.yml
1 service uses Mail
File
- src/
SocialNetwork/ Mail.php, line 14
Namespace
Drupal\social_simple\SocialNetworkView source
class Mail implements SocialNetworkInterface {
use StringTranslationTrait;
/**
* The social network base share link.
*/
const MAIL = 'mailto:';
/**
* The module handler.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
public function __construct(ModuleHandlerInterface $moduleHandler) {
$this->moduleHandler = $moduleHandler;
}
/**
* {@inheritdoc}
*/
public function getId() {
return 'mail';
}
/**
* {@inheritdoc}
*/
public function getLabel() {
return $this
->t('Mail');
}
/**
* {@inheritdoc}
*/
public function getShareLink($share_url, $title = '', EntityInterface $entity = NULL, array $additional_options = []) {
$options = [
'query' => [
'body' => PHP_EOL . $title . PHP_EOL . $share_url,
'subject' => $title,
],
'absolute' => TRUE,
'external' => TRUE,
];
if ($additional_options) {
foreach ($additional_options as $id => $value) {
$options['query'][$id] = $value;
}
}
if ($entity && $this
->checkForwardIntegration($entity)) {
$url = Url::fromRoute('forward.form', [
'entity_type' => $entity
->getEntityTypeId(),
'entity' => $entity
->id(),
]);
}
else {
$url = Url::fromUri(self::MAIL, $options);
}
$link = [
'url' => $url,
'title' => [
'#markup' => '<i class="fa fa-envelope"></i><span class="visually-hidden">' . $this
->getLabel() . '</span>',
],
'attributes' => $this
->getLinkAttributes($this
->getLabel()),
];
return $link;
}
/**
* {@inheritdoc}
*/
public function getLinkAttributes($network_name) {
$attributes = [
'title' => $network_name,
'data-popup-open' => 'false',
];
return $attributes;
}
/**
* Check if the mail button should use the forward module.
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity which will be shared.
*
* @return boolean
* True if the Mail button should use the Forward module.
*/
protected function checkForwardIntegration(EntityInterface $entity) {
if (!$this->moduleHandler
->moduleExists('forward')) {
return FALSE;
}
/** @var \Drupal\Core\Config\Entity\ConfigEntityInterface $entity_type */
$entity_type = $entity->type->entity;
if (!$entity_type instanceof ConfigEntityInterface) {
return FALSE;
}
return $entity_type
->getThirdPartySetting('social_simple', 'forward_integration', FALSE);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Mail:: |
protected | property | The module handler. | |
Mail:: |
protected | function | Check if the mail button should use the forward module. | |
Mail:: |
public | function |
Get the network id. Overrides SocialNetworkInterface:: |
|
Mail:: |
public | function |
Get the network name. Overrides SocialNetworkInterface:: |
|
Mail:: |
public | function |
Get common attributes for the share link. Overrides SocialNetworkInterface:: |
|
Mail:: |
public | function |
Checks whether the given transition is allowed. Overrides SocialNetworkInterface:: |
|
Mail:: |
constant | The social network base share link. | ||
Mail:: |
public | function | ||
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |