function tripal_stock_edit_ALL_properties_page

1.x tripal_stock-properties.inc tripal_stock_edit_ALL_properties_page($node)

Related topics

1 string reference to 'tripal_stock_edit_ALL_properties_page'
tripal_stock_menu in tripal_stock/tripal_stock.module
Implements hook_menu(): Adds menu items for the tripal_stock

File

tripal_stock/includes/tripal_stock-properties.inc, line 173
@todo Add file header description

Code

function tripal_stock_edit_ALL_properties_page($node) {
  $output = '';

  $output .= drupal_get_form('tripal_stock_edit_ALL_properties_form', $node);
  $output .= '<br />';
  $output .= drupal_get_form('tripal_stock_add_ONE_property_form', $node);
  $output .= '<br />';
  $output .= drupal_get_form('tripal_stock_back_to_stock_button', $node->nid);

  return $output;
}