interface SocialAddToCalendarInterface in Open Social 10.0.x
Same name and namespace in other branches
- 8.9 modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendarInterface.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarInterface
- 10.3.x modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendarInterface.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarInterface
- 10.1.x modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendarInterface.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarInterface
- 10.2.x modules/social_features/social_event/modules/social_event_addtocal/src/Plugin/SocialAddToCalendarInterface.php \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarInterface
Defines an interface for Social add to calendar plugins.
Hierarchy
- interface \Drupal\Component\Plugin\PluginInspectionInterface
- interface \Drupal\social_event_addtocal\Plugin\SocialAddToCalendarInterface
Expanded class hierarchy of SocialAddToCalendarInterface
All classes that implement SocialAddToCalendarInterface
1 file declares its use of SocialAddToCalendarInterface
- social_event_addtocal.module in modules/
social_features/ social_event/ modules/ social_event_addtocal/ social_event_addtocal.module - Contains Social Add To Calendar module.
File
- modules/
social_features/ social_event/ modules/ social_event_addtocal/ src/ Plugin/ SocialAddToCalendarInterface.php, line 11
Namespace
Drupal\social_event_addtocal\PluginView source
interface SocialAddToCalendarInterface extends PluginInspectionInterface {
/**
* Returns plugin name for label.
*
* @return \Drupal\Core\StringTranslation\TranslatableMarkup
* Plugin name.
*/
public function getName();
/**
* Returns the 'Add to calendar' link.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return \Drupal\Core\Url
* Url object.
*/
public function generateUrl(NodeInterface $node);
/**
* Returns array of event settings for url options.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return array
* Array of settings.
*/
public function generateSettings(NodeInterface $node);
/**
* Returns array of event dates for calendar.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return array
* Array of dates values.
*/
public function getEventDates(NodeInterface $node);
/**
* Returns the event description for calendar.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return string
* Event description.
*/
public function getEventDescription(NodeInterface $node);
/**
* Returns the event location for calendar.
*
* @param \Drupal\node\NodeInterface $node
* The node entity.
*
* @return string
* Event location.
*/
public function getEventLocation(NodeInterface $node);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginInspectionInterface:: |
public | function | Gets the definition of the plugin implementation. | 4 |
PluginInspectionInterface:: |
public | function | Gets the plugin_id of the plugin instance. | 2 |
SocialAddToCalendarInterface:: |
public | function | Returns array of event settings for url options. | 1 |
SocialAddToCalendarInterface:: |
public | function | Returns the 'Add to calendar' link. | 1 |
SocialAddToCalendarInterface:: |
public | function | Returns array of event dates for calendar. | 1 |
SocialAddToCalendarInterface:: |
public | function | Returns the event description for calendar. | 1 |
SocialAddToCalendarInterface:: |
public | function | Returns the event location for calendar. | 1 |
SocialAddToCalendarInterface:: |
public | function | Returns plugin name for label. | 1 |