You are here

function panels_page_fields in Panels 5.2

Same name and namespace in other branches
  1. 6.2 panels_page/panels_page.write.inc \panels_page_fields()

A list of the fields used in the panel_page table.

3 calls to panels_page_fields()
panels_page_export in panels_page/panels_page.module
Export a panel page into PHP code for use in import.
_panels_page_insert in panels_page/panels_page.admin.inc
Insert a new panel page into the database.
_panels_page_update in panels_page/panels_page.admin.inc
Save an existing panel page to the database.

File

panels_page/panels_page.module, line 991
panels_page.module

Code

function panels_page_fields() {
  return array(
    "name" => "'%s'",
    "title" => "'%s'",
    "arguments" => "'%s'",
    "displays" => "'%s'",
    "contexts" => "'%s'",
    "relationships" => "'%s'",
    "access" => "'%s'",
    "path" => "'%s'",
    "css_id" => "'%s'",
    "css" => "'%s'",
    "no_blocks" => "%d",
    "switcher_type" => "'%s'",
    "switcher_name" => "'%s'",
    "switcher_options" => "'%s'",
    "menu" => "%d",
    "menu_tab" => "%d",
    "menu_tab_weight" => "%d",
    "menu_title" => "'%s'",
    "menu_tab_default" => "%d",
    "menu_tab_default_parent_type" => "'%s'",
    "menu_parent_title" => "'%s'",
    "menu_parent_tab_weight" => "%d",
  );
}