Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
TabInterface.php
Go to the documentation of this file.
1 <?php
7 
11 interface TabInterface
12 {
18  public function getTabLabel();
19 
25  public function getTabTitle();
26 
32  public function getTabClass();
33 
39  public function getTabUrl();
40 
46  public function isAjaxLoaded();
47 
53  public function canShowTab();
54 
60  public function isHidden();
61 
67  public function toHtml();
68 }