Skip to content

Commit eef6988

Browse files
authored
8.1.4
- D8CORE-3476 Create a new view display mode specific for viewfields (#14)
2 parents 33e6955 + fe1deca commit eef6988

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Stanford Fields
22

3+
8.1.4
4+
--------------------------------------------------------------------------------
5+
_Release Date: 2021-03-05_
6+
7+
- D8CORE-3476 Create a new view display mode specific for viewfields (#14)
8+
39
8.1.3
410
--------------------------------------------------------------------------------
511
_Release Date: 2021-01-13_
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
namespace Drupal\stanford_fields\Plugin\views\display;
4+
5+
use Drupal\views\Plugin\views\display\Block;
6+
7+
/**
8+
* The plugin that handles a block.
9+
*
10+
* @ingroup views_display_plugins
11+
*
12+
* @ViewsDisplay(
13+
* id = "viewfield_block",
14+
* title = @Translation("View Field Block"),
15+
* help = @Translation("Identical to a block, but allows for granular viewfield settings."),
16+
* theme = "views_view",
17+
* register_theme = FALSE,
18+
* uses_hook_block = TRUE,
19+
* contextual_links_locations = {"block"},
20+
* admin = @Translation("Block")
21+
* )
22+
*
23+
* @see \Drupal\views\Plugin\Block\ViewsBlock
24+
* @see \Drupal\views\Plugin\Derivative\ViewsBlock
25+
*/
26+
class ViewFieldBlock extends Block {
27+
28+
}

stanford_fields.info.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ type: module
33
description: 'Field types, widgets and formatters to enhance Drupal and Contrib.'
44
core_version_requirement: ^8 || ^9
55
package: Stanford
6-
version: 8.x-1.3
6+
version: 8.x-1.4
77
dependencies:
88
- drupal:field

0 commit comments

Comments
 (0)