FeedStorage::getFeedIdsToRefresh

public FeedStorage::getFeedIdsToRefresh() Returns the fids of feeds that need to be refreshed. Return value array A list of feed ids to be refreshed. Overrides FeedStorageInterface::getFeedIdsToRefresh File core/modules/aggregator/src/FeedStorage.php, line 18 Class FeedStorage Controller class for aggregator's feeds. Namespace Drupal\aggregator Code public function getFeedIdsToRefresh() { return $this->database->query('SELECT fid FROM {aggregator_feed} WHERE queued = 0 AND che

FormStateInterface::isValueEmpty

public FormStateInterface::isValueEmpty($key) Determines if a specific key has a value in the submitted form values. Parameters string|array $key: Values are stored as a multi-dimensional associative array. If $key is a string, it will return empty($values[$key]). If $key is an array, each element of the array will be used as a nested key. If $key = array('foo', 'bar') it will return empty($values['foo']['bar']). Return value bool TRUE if the $key has no value, FALSE otherwise. File core/lib/

ImageStyleStorageInterface::getReplacementId

public ImageStyleStorageInterface::getReplacementId($name) Retrieves the replacement ID of a deleted image style. The method is retrieving the value stored by ::setReplacementId(). Parameters string $name: The ID of the image style to be replaced. Return value string|null The ID of the image style used as replacement, if there's any, or NULL. See also \Drupal\image\ImageStyleStorageInterface::setReplacementId() File core/modules/image/src/ImageStyleStorageInterface.php, line 38 Class Ima

EntityFormBuilderInterface::getForm

public EntityFormBuilderInterface::getForm(EntityInterface $entity, $operation = 'default', array $form_state_additions = array()) Gets the built and processed entity form for the given entity. The form may also be retrieved from the cache if the form was built in a previous page load. The form is then passed on for processing, validation, and submission if there is proper input. $form_state_additions['langcode'] = $langcode; $form = \Drupal::service('entity.form_builder')->getForm($enti

FormStateInterface::setUserInput

public FormStateInterface::setUserInput(array $user_input) Sets the form values as though they were submitted by a user. Parameters array $user_input: An associative array of raw and unvalidated values. Return value $this File core/lib/Drupal/Core/Form/FormStateInterface.php, line 276 Class FormStateInterface Provides an interface for an object containing the current state of a form. Namespace Drupal\Core\Form Code public function setUserInput(array $user_input);

EntityChangedInterface::getChangedTime

public EntityChangedInterface::getChangedTime() Gets the timestamp of the last entity change for the current translation. Return value int The timestamp of the last entity save operation. File core/lib/Drupal/Core/Entity/EntityChangedInterface.php, line 25 Class EntityChangedInterface Defines an interface for entity change timestamp tracking. Namespace Drupal\Core\Entity Code public function getChangedTime();

taxonomy_vocabulary_load

taxonomy_vocabulary_load($vid) Return the taxonomy vocabulary entity matching a vocabulary ID. Parameters int $vid: The vocabulary's ID. Return value \Drupal\taxonomy\Entity\Vocabulary|null The taxonomy vocabulary entity, if exists, NULL otherwise. Results are statically cached. Deprecated in Drupal 8.x, will be removed before Drupal 9.0. Use \Drupal\taxonomy\Entity\Vocabulary::load(). File core/modules/taxonomy/taxonomy.module, line 409 Enables the organization of content into categories.

ExecutionContext::$root

The root value of the validated object graph. Type: mixed File core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php, line 33 Class ExecutionContext Defines an execution context class. Namespace Drupal\Core\TypedData\Validation Code protected $root;

BackendChain::appendBackend

public BackendChain::appendBackend(CacheBackendInterface $backend) Appends a cache backend to the cache chain. Parameters CacheBackendInterface $backend: The cache backend to be appended to the cache chain. Return value \Drupal\Core\Cache\BackendChain The called object. File core/lib/Drupal/Core/Cache/BackendChain.php, line 49 Class BackendChain Defines a chained cache implementation for combining multiple cache backends. Namespace Drupal\Core\Cache Code public function appendBackend

ConfigTranslationEditForm::getFormId

public ConfigTranslationEditForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/config_translation/src/Form/ConfigTranslationEditForm.php, line 16 Class ConfigTranslationEditForm Defines a form for editing configuration translations. Namespace Drupal\config_translation\Form Code public function getFormId() { return 'config_translation_edit_form'; }