class AddToGoogle in Open Social 10.3.x
Same name and namespace in other branches
- 8.9 modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendar/AddToGoogle.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendar\AddToGoogle
- 10.0.x modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendar/AddToGoogle.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendar\AddToGoogle
- 10.1.x modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendar/AddToGoogle.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendar\AddToGoogle
- 10.2.x modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendar/AddToGoogle.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendar\AddToGoogle
Provides add to Google calendar plugin.
Plugin annotation
@SocialAddToCalendar(
id = "google",
label = @Translation("Google"),
url = "http://www.google.com/calendar/event"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarBase implements SocialAddToCalendarInterface
- class \Drupal\social_event_addtocal\Plugin\SocialAddToCalendar\AddToGoogle
- class \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarBase implements SocialAddToCalendarInterface
Expanded class hierarchy of AddToGoogle
File
- modules/
social_features/ social_event/ modules/ social_event_addtocal/ src/ Plugin/ SocialAddToCalendar/ AddToGoogle.php, line 18
Namespace
Drupal\social_event_addtocal\Plugin\SocialAddToCalendarView source
class AddToGoogle extends SocialAddToCalendarBase {
/**
* {@inheritdoc}
*/
public function generateUrl(NodeInterface $node) {
$settings = $this
->generateSettings($node);
$options = [
'query' => [
'action' => 'TEMPLATE',
'text' => $settings['title'],
'dates' => $settings['dates']['both'],
'ctz' => $settings['timezone'],
'details' => $settings['description'],
'location' => $settings['location'],
],
'attributes' => [
'target' => '_blank',
],
];
return Url::fromUri($this->pluginDefinition['url'], $options);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AddToGoogle:: |
public | function |
Returns the 'Add to calendar' link. Overrides SocialAddToCalendarBase:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 98 |
SocialAddToCalendarBase:: |
public | function |
Returns array of event settings for url options. Overrides SocialAddToCalendarInterface:: |
|
SocialAddToCalendarBase:: |
public | function |
Returns array of event dates for calendar. Overrides SocialAddToCalendarInterface:: |
|
SocialAddToCalendarBase:: |
public | function |
Returns the event description for calendar. Overrides SocialAddToCalendarInterface:: |
|
SocialAddToCalendarBase:: |
public | function |
Returns the event location for calendar. Overrides SocialAddToCalendarInterface:: |
|
SocialAddToCalendarBase:: |
public | function |
Returns plugin name for label. Overrides SocialAddToCalendarInterface:: |