class Operations

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Render/Element/Operations.php \Drupal\Core\Render\Element\Operations

Provides a render element for a set of operations links.

This is a special case of \Drupal\Core\Render\Element\Dropbutton; the only difference is that it offers themes the possibility to render it differently through a theme suggestion.

Plugin annotation

@RenderElement("operations");

Hierarchy

Expanded class hierarchy of Operations

See also

\Drupal|Core\Render\Element\DropButton

73 string references to 'Operations'
AggregatorController::adminOverview in core/modules/aggregator/src/Controller/AggregatorController.php
Displays the aggregator administration page.
BanAdmin::buildForm in core/modules/ban/src/Form/BanAdmin.php
BatchBuilderTest::testDefaultValues in core/tests/Drupal/Tests/Core/Batch/BatchBuilderTest.php
Tests the default values.
BlockContentListTest::testListing in core/modules/block_content/tests/src/Functional/BlockContentListTest.php
Tests the custom block listing page.
BlockContentListViewsTest::testListing in core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php
Tests the custom block listing page.

... See full list

27 #type uses of Operations
AggregatorController::adminOverview in core/modules/aggregator/src/Controller/AggregatorController.php
Displays the aggregator administration page.
BanAdmin::buildForm in core/modules/ban/src/Form/BanAdmin.php
BlockLibraryController::listBlocks in core/modules/block/src/Controller/BlockLibraryController.php
Shows a list of blocks that can be added to a theme's layout.
BookAdminEditForm::bookAdminTableTree in core/modules/book/src/Form/BookAdminEditForm.php
Helps build the main table in the book administration page form.
BookController::adminOverview in core/modules/book/src/Controller/BookController.php
Returns an administrative overview of all books.

... See full list

File

core/lib/Drupal/Core/Render/Element/Operations.php, line 16

Namespace

Drupal\Core\Render\Element
View source
class Operations extends Dropbutton {
  
  /**
   * {@inheritdoc}
   */
  public function getInfo() {
    return [
      '#theme' => 'links__dropbutton__operations',
    ] + parent::getInfo();
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.