TextFormat::configFactory

protected static TextFormat::configFactory() Wraps the config factory. Return value \Drupal\Core\Config\ConfigFactoryInterface File core/modules/filter/src/Element/TextFormat.php, line 264 Class TextFormat Provides a text format render element. Namespace Drupal\filter\Element Code protected static function configFactory() { return \Drupal::configFactory(); }

FeedInterface::getQueuedTime

public FeedInterface::getQueuedTime() Returns the time when this feed was queued for refresh, 0 if not queued. Return value int The timestamp of the last refresh. File core/modules/aggregator/src/FeedInterface.php, line 86 Class FeedInterface Provides an interface defining an aggregator feed entity. Namespace Drupal\aggregator Code public function getQueuedTime();

UserListBuilder::render

public UserListBuilder::render() Builds the entity listing as renderable array for table.html.twig. @todo Add a link to add a new item to the #empty text. Overrides EntityListBuilder::render File core/modules/user/src/UserListBuilder.php, line 181 Class UserListBuilder Defines a class to build a listing of user entities. Namespace Drupal\user Code public function render() { $build = parent::render(); $build['table']['#empty'] = $this->t('No people available.'); return $build;

FeedInterface::getRefreshRate

public FeedInterface::getRefreshRate() Returns the refresh rate of the feed in seconds. Return value int The refresh rate of the feed in seconds. File core/modules/aggregator/src/FeedInterface.php, line 48 Class FeedInterface Provides an interface defining an aggregator feed entity. Namespace Drupal\aggregator Code public function getRefreshRate();

FeedInterface::getWebsiteUrl

public FeedInterface::getWebsiteUrl() Returns the parent website of the feed. Return value string The parent website of the feed. File core/modules/aggregator/src/FeedInterface.php, line 105 Class FeedInterface Provides an interface defining an aggregator feed entity. Namespace Drupal\aggregator Code public function getWebsiteUrl();

PhpStorageInterface::load

public PhpStorageInterface::load($name) Loads PHP code from storage. Depending on storage implementation, exists() checks can be expensive, so this function may be called for a file that doesn't exist, and that should not result in errors. This function does not return anything, so it is up to the caller to determine if any code was loaded (for example, check class_exists() or function_exists() for what was expected in the code). Parameters string $name: The virtual file name. Can be a relativ

FeedInterface::refreshItems

public FeedInterface::refreshItems() Updates the feed items by triggering the import process. This will also update the last checked time of the feed and save it. Return value bool TRUE if there is new content for the feed FALSE otherwise. See also \Drupal\aggregator\ItemsImporterInterface::refresh() File core/modules/aggregator/src/FeedInterface.php, line 237 Class FeedInterface Provides an interface defining an aggregator feed entity. Namespace Drupal\aggregator Code public functio

BlockLibraryController::$contextRepository

The context repository. Type: \Drupal\Core\Plugin\Context\LazyContextRepository File core/modules/block/src/Controller/BlockLibraryController.php, line 33 Class BlockLibraryController Provides a list of block plugins to be added to the layout. Namespace Drupal\block\Controller Code protected $contextRepository;

EntityTypeEventSubscriberTrait::getEntityTypeEvents

public static EntityTypeEventSubscriberTrait::getEntityTypeEvents() Gets the subscribed events. Return value array An array of subscribed event names. See also \Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents() File core/lib/Drupal/Core/Entity/EntityTypeEventSubscriberTrait.php, line 24 Class EntityTypeEventSubscriberTrait Helper methods for EntityTypeListenerInterface. Namespace Drupal\Core\Entity Code public static function getEntityTypeEvents() {

EntityStorageInterface::resetCache

public EntityStorageInterface::resetCache(array $ids = NULL) Resets the internal, static entity cache. Parameters $ids: (optional) If specified, the cache is reset for the entities with the given ids only. File core/lib/Drupal/Core/Entity/EntityStorageInterface.php, line 35 Class EntityStorageInterface Defines the interface for entity storage classes. Namespace Drupal\Core\Entity Code public function resetCache(array $ids = NULL);