You are here

public function TabBase::getContent in Block Tabs 8

Returns the content of the tab.

Return value

string The content of the tab.

Overrides TabInterface::getContent

3 methods override TabBase::getContent()
BlockContentTab::getContent in src/Plugin/Tab/BlockContentTab.php
Returns the content of the tab.
BlockTab::getContent in src/Plugin/Tab/BlockTab.php
Returns the content of the tab.
ViewsTab::getContent in src/Plugin/Tab/ViewsTab.php
Returns the content of the tab.

File

src/TabBase.php, line 187

Class

TabBase
Provides a base class for tabs.

Namespace

Drupal\blocktabs

Code

public function getContent() {
  $tab_content = '';
  return $tab_content;
}