You are here

function panels_node_content_admin in Panels 6.2

Page callback for the very short admin page.

1 string reference to 'panels_node_content_admin'
panels_node_content_menu in panels_node_content/panels_node_content.module
Implementation of hook_menu().

File

panels_node_content/panels_node_content.module, line 29
panels_node_content.module

Code

function panels_node_content_admin() {
  $output = '<p>';
  $output .= t('Panels node panes does not have a normal administrative UI, such as panels pages or mini panels. With this module, users may add a node directly to a panel via the add content interface. They may then select this node using an auto-complete field. In general, this method of adding nodes to panes should be considered deprecated (especially by module developers implementing the Panels API) and is only retained to support updating sites that use this older method. Moving forward, it is recommended that the context system be used to embed nodes, as that is far more powerful and interesting.');
  $output .= t('However, certain modules which make use of Panels are dependent on this method of getting node context (often without the developer even being aware of it), so it is important to emphasize that you CAN leave this module enabled without negatively impacting your site.');
  $output .= '</p>';
  return $output;
}