public BlockContentViewsData::getViewsData()
Returns views data for the entity type.
Return value
array Views data in the format of hook_views_data().
Overrides EntityViewsData::getViewsData
File
- core/modules/block_content/src/BlockContentViewsData.php, line 15
Class
- BlockContentViewsData
- Provides the views data for the block_content entity type.
Namespace
Drupal\block_content
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | public function getViewsData() { $data = parent::getViewsData(); $data [ 'block_content_field_data' ][ 'id' ][ 'field' ][ 'id' ] = 'field' ; $data [ 'block_content_field_data' ][ 'info' ][ 'field' ][ 'id' ] = 'field' ; $data [ 'block_content_field_data' ][ 'info' ][ 'field' ][ 'link_to_entity default' ] = TRUE; $data [ 'block_content_field_data' ][ 'type' ][ 'field' ][ 'id' ] = 'field' ; $data [ 'block_content' ][ 'block_content_listing_empty' ] = array ( 'title' => $this ->t( 'Empty block library behavior' ), 'help' => $this ->t( 'Provides a link to add a new block.' ), 'area' => array ( 'id' => 'block_content_listing_empty' , ), ); // Advertise this table as a possible base table. $data [ 'block_content_field_revision' ][ 'table' ][ 'base' ][ 'help' ] = $this ->t( 'Block Content revision is a history of changes to block content.' ); $data [ 'block_content_field_revision' ][ 'table' ][ 'base' ][ 'defaults' ][ 'title' ] = 'info' ; // @todo EntityViewsData should add these relationships by default. $data [ 'block_content_field_revision' ][ 'id' ][ 'relationship' ][ 'id' ] = 'standard' ; $data [ 'block_content_field_revision' ][ 'id' ][ 'relationship' ][ 'base' ] = 'block_content_field_data' ; $data [ 'block_content_field_revision' ][ 'id' ][ 'relationship' ][ 'base field' ] = 'id' ; $data [ 'block_content_field_revision' ][ 'id' ][ 'relationship' ][ 'title' ] = $this ->t( 'Block Content' ); $data [ 'block_content_field_revision' ][ 'id' ][ 'relationship' ][ 'label' ] = $this ->t( 'Get the actual block content from a block content revision.' ); $data [ 'block_content_field_revision' ][ 'revision_id' ][ 'relationship' ][ 'id' ] = 'standard' ; $data [ 'block_content_field_revision' ][ 'revision_id' ][ 'relationship' ][ 'base' ] = 'block_content_field_data' ; $data [ 'block_content_field_revision' ][ 'revision_id' ][ 'relationship' ][ 'base field' ] = 'revision_id' ; $data [ 'block_content_field_revision' ][ 'revision_id' ][ 'relationship' ][ 'title' ] = $this ->t( 'Block Content' ); $data [ 'block_content_field_revision' ][ 'revision_id' ][ 'relationship' ][ 'label' ] = $this ->t( 'Get the actual block content from a block content revision.' ); return $data ; } |
Please login to continue.