public function ListingEmpty::render in Zircon Profile 8
Same name in this branch
- 8 core/modules/node/src/Plugin/views/area/ListingEmpty.php \Drupal\node\Plugin\views\area\ListingEmpty::render()
- 8 core/modules/block_content/src/Plugin/views/area/ListingEmpty.php \Drupal\block_content\Plugin\views\area\ListingEmpty::render()
Same name and namespace in other branches
- 8.0 core/modules/node/src/Plugin/views/area/ListingEmpty.php \Drupal\node\Plugin\views\area\ListingEmpty::render()
Render the area.
Parameters
bool $empty: (optional) Indicator if view result is empty or not. Defaults to FALSE.
Return value
array In any case we need a valid Drupal render array to return.
Overrides AreaPluginBase::render
File
- core/
modules/ node/ src/ Plugin/ views/ area/ ListingEmpty.php, line 64 - Contains \Drupal\node\Plugin\views\area\ListingEmpty.
Class
- ListingEmpty
- Defines an area plugin to display a node/add link.
Namespace
Drupal\node\Plugin\views\areaCode
public function render($empty = FALSE) {
$account = \Drupal::currentUser();
if (!$empty || !empty($this->options['empty'])) {
$element = array(
'#theme' => 'links',
'#links' => array(
array(
'url' => Url::fromRoute('node.add_page'),
'title' => $this
->t('Add content'),
),
),
'#access' => $this->accessManager
->checkNamedRoute('node.add_page', array(), $account),
);
return $element;
}
return array();
}