Index: modules/field_ui/field_ui.api.php =================================================================== RCS file: /cvs/drupal/drupal/modules/field_ui/field_ui.api.php,v retrieving revision 1.6 diff -u -p -r1.6 field_ui.api.php --- modules/field_ui/field_ui.api.php 4 May 2010 16:11:08 -0000 1.6 +++ modules/field_ui/field_ui.api.php 14 Jul 2010 22:30:53 -0000 @@ -132,42 +132,5 @@ function hook_field_widget_settings_form } /** - * Provide information on view mode tabs for an entity type. - * - * @param $entity_type - * The type of entity to return tabs for. - * - * @return - * An array whose keys are internal-use tab names, and whose values are - * arrays of tab information, with the following elements: - * - 'title': Human-readable title of the tab. - * - 'view modes': Array of view modes for this entity type that should - * be displayed on this tab. - * - * @see field_ui_view_modes_tabs() - */ -function hook_field_ui_view_modes_tabs($entity_type) { - $modes = array( - 'basic' => array( - 'title' => t('Basic'), - 'view modes' => array('teaser', 'full'), - ), - 'rss' => array( - 'title' => t('RSS'), - 'view modes' => array('rss'), - ), - 'print' => array( - 'title' => t('Print'), - 'view modes' => array('print'), - ), - 'search' => array( - 'title' => t('Search'), - 'view modes' => array('search_index', 'search_result'), - ), - ); - return $modes; -} - -/** * @} End of "ingroup field_ui_field_type" */