function priority_form_alter(&$form, $form_state, $form_id) {
if($form_id == "content_field_edit_form") {
$form['field']['priority'] = array(
'#type' => 'select',
'#title' => t('Priority'),
'#options' => array(NULL, 1, 2, 3, 4, 5, 6, 7),
'#weight' => 0,
'#default_value' => $form["#field"]['priority'],
'#description' => t('Priority')
);
}
}
function priority_install() {
db_add_field($ret, 'content_node_field', 'priority', array('type' => 'int', 'not null' => FALSE, 'default' => NULL));
db_add_index($ret, 'content_node_field', 'priority', array('priority'));
}
function priority_schema_alter(&$schema) {
$schema['content_node_field']['fields']['priority'] = array('type' => 'int', 'not null' => FALSE, 'default' => NULL);
}
You are not logged in, either login or create an account to post comments
posted by soma lkzx at 11:11 AM on March 11