public ActionListBuilder::render()
Builds the entity listing as renderable array for table.html.twig.
@todo Add a link to add a new item to the #empty text.
Overrides EntityListBuilder::render
File
- core/modules/action/src/ActionListBuilder.php, line 110
Class
- ActionListBuilder
- Defines a class to build a listing of action entities.
Namespace
Drupal\action
Code
1 2 3 4 5 6 7 8 9 | public function render() { $build [ 'action_header' ][ '#markup' ] = '<h3>' . $this ->t( 'Available actions:' ) . '</h3>' ; $build [ 'action_table' ] = parent::render(); if (! $this ->hasConfigurableActions) { unset( $build [ 'action_table' ][ 'table' ][ '#header' ][ 'operations' ]); } $build [ 'action_admin_manage_form' ] = \Drupal::formBuilder()->getForm( 'Drupal\action\Form\ActionAdminManageForm' ); return $build ; } |
Please login to continue.