You are here

function theme_field_collection_tabs_tab in Field Collection Tab formatter 7

Default implementation of theme_field_collection_tabs_tab().

1 theme call to theme_field_collection_tabs_tab()
theme_field_collection_tabs in ./field_collection_tabs.module
Default implementation of theme_field_collection_tabs().

File

./field_collection_tabs.module, line 196
Provides formatter for field collections on tabs @copyright Copyright(c) 2012 Previous Next Pty Ltd @license GPL v2 http://www.fsf.org/licensing/licenses/gpl.html @author Lee Rowlands larowlan at previousnext dot com dot au

Code

function theme_field_collection_tabs_tab($variables) {
  $tab_id = $variables['tab_id'];
  $tab = $variables['tab'];
  return '<div id="' . $tab_id . '">' . $tab . '</div>';
}