ich habe jetzt mal den teil rausgesucht
Code: Alles auswählen
'table_add' => array(
array(MENU_BUTTONS_TABLE, array(
'COLUMNS' => array(
'button_id' => array('UINT', NULL, 'auto_increment'),
'button_url' => array('TEXT', ''),
'button_name' => array('VCHAR', ''),
'button_external' => array('BOOL', 0),
'button_display' => array('BOOL', 1),
'button_only_registered' => array('BOOL', 0),
),
'PRIMARY_KEY' => array('button_id'),
)),
array(MENU_COLORS_TABLE, array(
'COLUMNS' => array(
'color_id' => array('UINT', NULL, 'auto_increment'),
'color_name' => array('VCHAR', ''),
'color_text' => array('VCHAR', 'FFFFFF'),
'color_text_hover' => array('VCHAR', 'FFFFFF'),
'color_text_hover_decor' => array('VCHAR', 'none'),
'color_text_weight' => array('VCHAR', 'bold'),
'color_display_search' => array('BOOL', 1),
'color_text_transform' => array('VCHAR', 'none'),
'color_align' => array('VCHAR', 'left'),
),
'PRIMARY_KEY' => array('color_id'),
dieser is ja für tabellen
und dieser für insert
Code: Alles auswählen
array(MENU_BUTTONS_TABLE, array(
'button_id' => '1', 'button_url' => 'http://www.google.com', 'button_name' => 'Example', 'button_external' => '1', 'button_display' => '1', 'button_only_registered' => '0',
)),
array(MENU_COLORS_TABLE, array(
'color_id' => '1', 'color_name' => 'blue', 'color_text' => 'FFFFFF', 'color_text_hover' => 'FFFFFF', 'color_text_hover_decor' => 'none', 'color_text_weight' => 'bold', 'color_display_search' => '1', 'color_text_transform' => 'none', 'color_align' => 'left',
)),
array(MENU_COLORS_TABLE, array(
'color_id' => '2', 'color_name' => 'black', 'color_text' => 'FFFFFF', 'color_text_hover' => 'FFFFFF', 'color_text_hover_decor' => 'none', 'color_text_weight' => 'bold', 'color_display_search' => '1', 'color_text_transform' => 'none', 'color_align' => 'left',
)),
array(MENU_COLORS_TABLE, array(
'color_id' => '3', 'color_name' => 'brown', 'color_text' => 'FFFFFF', 'color_text_hover' => 'FFFFFF', 'color_text_hover_decor' => 'none', 'color_text_weight' => 'bold', 'color_display_search' => '1', 'color_text_transform' => 'none', 'color_align' => 'left',
)),
array(MENU_COLORS_TABLE, array(
'color_id' => '4', 'color_name' => 'gray', 'color_text' => 'FFFFFF', 'color_text_hover' => 'FFFFFF', 'color_text_hover_decor' => 'none', 'color_text_weight' => 'bold', 'color_display_search' => '1', 'color_text_transform' => 'none', 'color_align' => 'left',
)),
array(MENU_COLORS_TABLE, array(
'color_id' => '5', 'color_name' => 'orange', 'color_text' => 'FFFFFF', 'color_text_hover' => 'FFFFFF', 'color_text_hover_decor' => 'none', 'color_text_weight' => 'bold', 'color_display_search' => '1', 'color_text_transform' => 'none', 'color_align' => 'left',
is dies korrekt?