You are here

function paragraphs_items_form in Paragraphs table 7

Form for editing a paragraphs item. @todo implement hook_forms().

1 string reference to 'paragraphs_items_form'
paragraphs_items_add in ./pharagraphs_table.pages.inc
Add a new paragraphs item.

File

./pharagraphs_table.pages.inc, line 22

Code

function paragraphs_items_form($form, &$form_state, $paragraphs_items) {
  $form['actions'] = array(
    '#type' => 'actions',
    '#weight' => 50,
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save'),
    '#weight' => 5,
  );
  return $form;
}