function Node::getCckData
Retrieves raw field data for a node.
Parameters
array $field: A field and instance definition from getFieldInfo().
\Drupal\migrate\Row $node: The node.
Return value
array The field values, keyed by delta.
Deprecated
in drupal:8.2.0 and is removed from drupal:9.0.0. Use getFieldData() instead.
File
-
core/
modules/ node/ src/ Plugin/ migrate/ source/ d6/ Node.php, line 309
Class
- Node
- Drupal 6 node source from database.
Namespace
Drupal\node\Plugin\migrate\source\d6Code
protected function getCckData(array $field, Row $node) {
return $this->getFieldData($field, $node);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.