Lines Matching refs:tab
7 <div class="tab-container">
11 foreach($tabs as $tab) {
12 if (empty($tab['tab']) || trim($tab['tab']) === '') {
15 echo '<li class="' . $tab['id'] . '">';
16 echo '<a href="#' . $tab['id'] . '" aria-expanded="false">';
18 echo $tab['label'];
19 if($tab['count'] !== null) {
20 echo ' <span class="num">' . $tab['count'] . '</span>';
32 foreach($tabs as $tab) {
33 if (empty($tab['tab']) || trim($tab['tab']) === '') {
36 echo '<div id="' . $tab['id'] . '" class="tab-pane" aria-hidden="true">';
37 echo $tab['tab'];