aggregator_cron

aggregator_cron() Implements hook_cron(). Queues news feeds for updates once their refresh interval has elapsed. File core/modules/aggregator/aggregator.module, line 137 Used to aggregate syndicated content (RSS, RDF, and Atom). Code function aggregator_cron() { $queue = \Drupal::queue('aggregator_feeds'); $ids = \Drupal::entityManager()->getStorage('aggregator_feed')->getFeedIdsToRefresh(); foreach (Feed::loadMultiple($ids) as $feed) { if ($queue->createItem($feed)) {

AggregatorProcessor::$description

The description of the plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/aggregator/src/Annotation/AggregatorProcessor.php, line 46 Class AggregatorProcessor Defines a Plugin annotation object for aggregator processor plugins. Namespace Drupal\aggregator\Annotation Code public $description;

AggregatorProcessor::$id

The plugin ID. Type: string File core/modules/aggregator/src/Annotation/AggregatorProcessor.php, line 28 Class AggregatorProcessor Defines a Plugin annotation object for aggregator processor plugins. Namespace Drupal\aggregator\Annotation Code public $id;

AggregatorProcessor::$title

The title of the plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/aggregator/src/Annotation/AggregatorProcessor.php, line 37 Class AggregatorProcessor Defines a Plugin annotation object for aggregator processor plugins. Namespace Drupal\aggregator\Annotation Code public $title;

AggregatorParser::$description

The description of the plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/aggregator/src/Annotation/AggregatorParser.php, line 46 Class AggregatorParser Defines a Plugin annotation object for aggregator parser plugins. Namespace Drupal\aggregator\Annotation Code public $description;

AggregatorParser::$title

The title of the plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/aggregator/src/Annotation/AggregatorParser.php, line 37 Class AggregatorParser Defines a Plugin annotation object for aggregator parser plugins. Namespace Drupal\aggregator\Annotation Code public $title;

AggregatorItemViewsData::getViewsData

public AggregatorItemViewsData::getViewsData() Returns views data for the entity type. Return value array Views data in the format of hook_views_data(). Overrides EntityViewsData::getViewsData File core/modules/aggregator/src/AggregatorItemViewsData.php, line 15 Class AggregatorItemViewsData Provides the views data for the aggregator item entity type. Namespace Drupal\aggregator Code public function getViewsData() { $data = parent::getViewsData(); $data['aggregator_item']['table'

AggregatorParser::$id

The plugin ID. Type: string File core/modules/aggregator/src/Annotation/AggregatorParser.php, line 28 Class AggregatorParser Defines a Plugin annotation object for aggregator parser plugins. Namespace Drupal\aggregator\Annotation Code public $id;

AggregatorParser

Defines a Plugin annotation object for aggregator parser plugins. Plugin Namespace: Plugin\aggregator\parser For a working example, see \Drupal\aggregator\Plugin\aggregator\parser\DefaultParser Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\aggregator\Annotation\AggregatorParser See also \Drupal\aggregator\Plugin\AggregatorPluginManager \Drupal\aggregator\Plugin\ParserInterface \Drupal\aggregator\Plugin\AggregatorPluginSettingsBase Plugin AP

AggregatorItemViewsData

Provides the views data for the aggregator item entity type. Hierarchy class \Drupal\views\EntityViewsData implements EntityHandlerInterface, EntityViewsDataInterface uses StringTranslationTraitclass \Drupal\aggregator\AggregatorItemViewsData File core/modules/aggregator/src/AggregatorItemViewsData.php, line 10 Namespace Drupal\aggregator Members Name Modifiers Type Description AggregatorItemViewsData::getViewsData public function Returns views data for the entity type.