Issue #2308707 by eojthebrave: Field widget @defgroup references wrong class in documentation.

8.0.x
Dries 2014-07-25 13:26:47 -04:00
parent d1f6df12e0
commit a678efd6d7
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ use Drupal\Component\Utility\NestedArray;
* hook_field_schema(). * hook_field_schema().
* *
* Field types are plugins annotated with class * Field types are plugins annotated with class
* \Drupal\Core\Entity\Annotation\FieldType, and implement plugin interface * \Drupal\Core\Field\Annotation\FieldType, and implement plugin interface
* \Drupal\Core\Field\FieldItemInterface. Field Type plugins are managed by the * \Drupal\Core\Field\FieldItemInterface. Field Type plugins are managed by the
* \Drupal\Core\Field\FieldTypePluginManager class. Field type classes usually * \Drupal\Core\Field\FieldTypePluginManager class. Field type classes usually
* extend base class \Drupal\Core\Field\FieldItemBase. Field-type plugins need * extend base class \Drupal\Core\Field\FieldItemBase. Field-type plugins need
@ -172,7 +172,7 @@ function hook_field_widget_WIDGET_TYPE_form_alter(&$element, &$form_state, $cont
* *
* Formatters are Plugins managed by the * Formatters are Plugins managed by the
* \Drupal\Core\Field\FormatterPluginManager class. A formatter is a plugin * \Drupal\Core\Field\FormatterPluginManager class. A formatter is a plugin
* annotated with class \Drupal\Core\Entity\Annotation\FieldFormatter that * annotated with class \Drupal\Core\Field\Annotation\FieldFormatter that
* implements \Drupal\Core\Field\FormatterInterface (in most cases, by * implements \Drupal\Core\Field\FormatterInterface (in most cases, by
* subclassing \Drupal\Core\Field\FormatterBase). Formatter plugins need to be * subclassing \Drupal\Core\Field\FormatterBase). Formatter plugins need to be
* in the namespace \Drupal\{your_module}\Plugin\Field\FieldFormatter. * in the namespace \Drupal\{your_module}\Plugin\Field\FieldFormatter.
@ -247,7 +247,7 @@ function hook_field_info_max_weight($entity_type, $bundle, $context, $context_mo
* that cannot be updated. * that cannot be updated.
* *
* To forbid the update from occurring, throw a * To forbid the update from occurring, throw a
* \Drupal\Core\Entity\Exception\StorageDefinitionUpdateForbiddenException. * \Drupal\Core\Entity\Exception\FieldStorageDefinitionUpdateForbiddenException.
* *
* @param \Drupal\field\FieldStorageConfigInterface $field_storage * @param \Drupal\field\FieldStorageConfigInterface $field_storage
* The field storage as it will be post-update. * The field storage as it will be post-update.