You are here

function panels_get_content_types in Panels 5

Same name and namespace in other branches
  1. 5.2 includes/plugins.inc \panels_get_content_types()
  2. 6.2 includes/plugins.inc \panels_get_content_types()
4 calls to panels_get_content_types()
panels_edit_form in ./panels.module
Edit an already loaded panels.
panels_edit_form_validate in ./panels.module
panels_panels_page in ./panels.module
theme_panels_edit_form in ./panels.module
Display the form to edit a panels.

File

./panels.module, line 828

Code

function panels_get_content_types() {
  static $layout = NULL;
  if (!$layout) {
    $layouts = panels_load_includes('content_types', 'panels_content_types');
  }
  return $layouts;
}