You are here

function gallery_assist_austoben_uno in Gallery Assist 7

1 call to gallery_assist_austoben_uno()
gallery_assist_austoben in ./gallery_assist.austoben.inc

File

./gallery_assist.austoben.inc, line 78

Code

function gallery_assist_austoben_uno($prefix) {
  $form = array();
  $form["{$prefix}_blabla"] = array(
    '#type' => 'textfield',
    '#title' => 'Text',
    '#description' => 'Lorem ipsum lorem ipsum lorem ipsum.',
  );

  // Replicating the above textarea, this is just for demo.
  $form["{$prefix}_setting"] = array(
    '#type' => 'textarea',
    '#required' => TRUE,
    '#title' => t('Contact mail.'),
    '#description' => t('Body text when a new comment is posted by users.'),
  );
  return $form;
}