function tripal_stock_back_to_stock_button
1.x tripal_stock-secondary_tables.inc | tripal_stock_back_to_stock_button($form_state, $nid) |
Related topics
3 string references to 'tripal_stock_back_to_stock_button'
- tripal_stock_edit_ALL_dbreferences_page in tripal_stock/
includes/ tripal_stock-db_references.inc - Display the EDIT Database References to Stock Page
- tripal_stock_edit_ALL_properties_page in tripal_stock/
includes/ tripal_stock-properties.inc - tripal_stock_edit_ALL_relationships_page in tripal_stock/
includes/ tripal_stock-relationships.inc
File
- tripal_stock/
includes/ tripal_stock-secondary_tables.inc, line 12 - @todo Add file header description
Code
function tripal_stock_back_to_stock_button($form_state, $nid) {
$form = array();
$form['nid'] = array(
'#type' => 'hidden',
'#value' => $nid
);
$form["submit-back"] = array(
'#type' => 'submit',
'#value' => t('Back to Stock')
);
return $form;
}