You are here

function fieldable_panels_panes_entity_view_page in Fieldable Panels Panes (FPP) 7

Page callback to view a entity.

This represents an administrative view only. It is not available to the general public. These entities are meant to be viewed as panel panes (or blocks).

Parameters

object $entity: The FPP object to process.

1 string reference to 'fieldable_panels_panes_entity_view_page'
fieldable_panels_panes_menu in ./fieldable_panels_panes.module
Implements hook_menu().

File

includes/admin.inc, line 120
Contains administrative pages and functions for fieldable entity panes.

Code

function fieldable_panels_panes_entity_view_page($entity) {
  return fieldable_panels_panes_view($entity, 'preview');
}