AggregatorFetcher::$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/AggregatorFetcher.php, line 37 Class AggregatorFetcher Defines a Plugin annotation object for aggregator fetcher plugins. Namespace Drupal\aggregator\Annotation Code public $title;

AggregatorFetcher::$id

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

AggregatorFetcher::$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/AggregatorFetcher.php, line 46 Class AggregatorFetcher Defines a Plugin annotation object for aggregator fetcher plugins. Namespace Drupal\aggregator\Annotation Code public $description;

AggregatorFetcher

Defines a Plugin annotation object for aggregator fetcher plugins. Plugin Namespace: Plugin\aggregator\fetcher For a working example, see \Drupal\aggregator\Plugin\aggregator\fetcher\DefaultFetcher Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\aggregator\Annotation\AggregatorFetcher See also \Drupal\aggregator\Plugin\AggregatorPluginManager \Drupal\aggregator\Plugin\FetcherInterface \Drupal\aggregator\Plugin\AggregatorPluginSettingsBase Plu

AggregatorFeedViewsData::getViewsData

public AggregatorFeedViewsData::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/AggregatorFeedViewsData.php, line 15 Class AggregatorFeedViewsData Provides the views data for the aggregator feed entity type. Namespace Drupal\aggregator Code public function getViewsData() { $data = parent::getViewsData(); $data['aggregator_feed']['table'

AggregatorFeedViewsData

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

AggregatorController::__construct

public AggregatorController::__construct(DateFormatterInterface $date_formatter) Constructs a \Drupal\aggregator\Controller\AggregatorController object. Parameters \Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service. File core/modules/aggregator/src/Controller/AggregatorController.php, line 30 Class AggregatorController Returns responses for aggregator module routes. Namespace Drupal\aggregator\Controller Code public function __construct(DateFormat

AggregatorController::pageLast

public AggregatorController::pageLast() Displays the most recent items gathered from any feed. Return value string The rendered list of items for the feed. File core/modules/aggregator/src/Controller/AggregatorController.php, line 176 Class AggregatorController Returns responses for aggregator module routes. Namespace Drupal\aggregator\Controller Code public function pageLast() { $items = $this->entityManager()->getStorage('aggregator_item')->loadAll(20); $build = $this-&

AggregatorController::feedTitle

public AggregatorController::feedTitle(FeedInterface $aggregator_feed) Route title callback. Parameters \Drupal\aggregator\FeedInterface $aggregator_feed: The aggregator feed. Return value array The feed label as a render array. File core/modules/aggregator/src/Controller/AggregatorController.php, line 192 Class AggregatorController Returns responses for aggregator module routes. Namespace Drupal\aggregator\Controller Code public function feedTitle(FeedInterface $aggregator_feed) {

AggregatorController::feedRefresh

public AggregatorController::feedRefresh(FeedInterface $aggregator_feed) Refreshes a feed, then redirects to the overview page. Parameters \Drupal\aggregator\FeedInterface $aggregator_feed: An object describing the feed to be refreshed. Return value \Symfony\Component\HttpFoundation\RedirectResponse A redirection to the admin overview page. Throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException If the query token is missing or invalid. File core/modules/aggregator/src/Contr