You are here

function fieldable_panels_panes_view in Fieldable Panels Panes (FPP) 7

View a fieldable panel pane.

See also

node_view()

3 calls to fieldable_panels_panes_view()
fieldable_panels_panes_block_view in ./fieldable_panels_panes.module
Implements hook_block_view().
fieldable_panels_panes_entity_view_page in includes/admin.inc
Page callback to view a entity.
fieldable_panels_panes_fieldable_panels_pane_content_type_render in plugins/content_types/fieldable_panels_pane.inc
Callback to render our content type.

File

./fieldable_panels_panes.module, line 1144
Maintains an entity that appears as panel pane content.

Code

function fieldable_panels_panes_view($entity, $view_mode = 'full', $langcode = NULL) {

  // Defer to the other function.
  return fieldable_panels_pane_view($entity, $view_mode, $langcode);
}