You are here

function panels_page_router_table_query_fields in Panels 6.2

File

panels_page/panels_page.menu.inc, line 451
panels_page.menu.inc

Code

function panels_page_router_table_query_fields($table) {
  static $query_building_blocks = array();
  if (empty($query_building_blocks[$table])) {
    $schema = drupal_get_schema($table);
    foreach ($schema['fields'] as $field => $data) {
      $query_building_blocks[$table][$field] = db_type_placeholder($data['type']);
    }
  }
  return $query_building_blocks[$table];
}