Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
1488b8bf
Commit
1488b8bf
authored
Apr 14, 2013
by
Angie Byron
Browse files
Issue
#1969714
by yched: Fixed Stale class names for FieldInstance in phpdocs.
parent
7cf52a7b
Changes
7
Hide whitespace changes
Inline
Side-by-side
core/modules/datetime/lib/Drupal/datetime/Plugin/field/widget/DatetimeDatelistWidget.php
View file @
1488b8bf
...
...
@@ -42,7 +42,7 @@ class DateTimeDatelistWidget extends WidgetBase {
* The plugin_id for the widget.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\field\FieldInstance $instance
* @param \Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field instance to which the widget is associated.
* @param array $settings
* The widget settings.
...
...
core/modules/datetime/lib/Drupal/datetime/Plugin/field/widget/DatetimeDefaultWidget.php
View file @
1488b8bf
...
...
@@ -36,7 +36,7 @@ class DateTimeDefaultWidget extends WidgetBase {
* The plugin_id for the widget.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\field\FieldInstance $instance
* @param \Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field instance to which the widget is associated.
* @param array $settings
* The widget settings.
...
...
core/modules/edit/lib/Drupal/edit/EditorInterface.php
View file @
1488b8bf
...
...
@@ -21,7 +21,7 @@ interface EditorInterface extends PluginInspectionInterface {
/**
* Checks whether this editor is compatible with a given field instance.
*
* @param \Drupal\field\FieldInstance $instance
* @param \Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field instance of the field being edited.
* @param array $items
* The field's item values.
...
...
@@ -37,7 +37,7 @@ public function isCompatible(FieldInstance $instance, array $items);
* Will only be called by \Drupal\edit\MetadataGeneratorInterface::generate()
* when the passed in field instance & item values will use this editor.
*
* @param \Drupal\field\FieldInstance $instance
* @param \Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field instance of the field being edited.
* @param array $items
* The field's item values.
...
...
core/modules/edit/lib/Drupal/edit/EditorSelectorInterface.php
View file @
1488b8bf
...
...
@@ -19,7 +19,7 @@ interface EditorSelectorInterface {
*
* @param string $formatter_type
* The field's formatter type name.
* @param \Drupal\field\FieldInstance $instance
* @param \Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field's instance info.
* @param array $items
* The field's item values.
...
...
core/modules/edit/lib/Drupal/edit/MetadataGeneratorInterface.php
View file @
1488b8bf
...
...
@@ -20,7 +20,7 @@ interface MetadataGeneratorInterface {
*
* @param \Drupal\Core\Entity\EntityInterface $entity
* The entity being edited.
* @param \Drupal\field\FieldInstance $instance
* @param \Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field instance of the field being edited.
* @param string $langcode
* The name of the language for which the field is being edited.
...
...
core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterBase.php
View file @
1488b8bf
...
...
@@ -26,7 +26,7 @@ abstract class FormatterBase extends PluginSettingsBase implements FormatterInte
/**
* The field instance definition.
*
* @var Drupal\field\FieldInstance
* @var
\
Drupal\field\
Plugin\Core\Entity\
FieldInstance
*/
protected
$instance
;
...
...
@@ -58,7 +58,7 @@ abstract class FormatterBase extends PluginSettingsBase implements FormatterInte
* The plugin_id for the formatter.
* @param array $plugin_definition
* The plugin implementation definition.
* @param Drupal\field\FieldInstance $instance
* @param
\
Drupal\field\
Plugin\Core\Entity\
FieldInstance $instance
* The field instance to which the formatter is associated.
* @param array $settings
* The formatter settings.
...
...
core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBase.php
View file @
1488b8bf
...
...
@@ -27,7 +27,7 @@ abstract class WidgetBase extends PluginSettingsBase implements WidgetInterface
/**
* The field instance definition.
*
* @var Drupal\field\FieldInstance
* @var
\
Drupal\field\
Plugin\Core\Entity\
FieldInstance
*/
protected
$instance
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment