function Block::getIds
Overrides MigrateSourceInterface::getIds
2 calls to Block::getIds()
- BlockTranslation::getIds in core/
modules/ block/ src/ Plugin/ migrate/ source/ d6/ BlockTranslation.php - Defines the source fields uniquely identifying a source row.
- BlockTranslation::getIds in core/
modules/ block/ src/ Plugin/ migrate/ source/ d6/ BlockTranslation.php - Defines the source fields uniquely identifying a source row.
2 methods override Block::getIds()
- BlockTranslation::getIds in core/
modules/ block/ src/ Plugin/ migrate/ source/ d6/ BlockTranslation.php - Defines the source fields uniquely identifying a source row.
- BlockTranslation::getIds in core/
modules/ block/ src/ Plugin/ migrate/ source/ d7/ BlockTranslation.php - Defines the source fields uniquely identifying a source row.
File
-
core/
modules/ block/ src/ Plugin/ migrate/ source/ Block.php, line 109
Class
- Block
- Drupal 6/7 block source from database.
Namespace
Drupal\block\Plugin\migrate\sourceCode
public function getIds() {
$ids['module']['type'] = 'string';
$ids['delta']['type'] = 'string';
$ids['theme']['type'] = 'string';
return $ids;
}