You are here

function simplemeta_form_keywords in Simple Meta 6.2

Same name and namespace in other branches
  1. 7 simplemeta.module \simplemeta_form_keywords()
1 string reference to 'simplemeta_form_keywords'
simplemeta_simplemeta_info in ./simplemeta.module
Implements hook_simplemeta_info()

File

./simplemeta.module, line 180

Code

function simplemeta_form_keywords($meta) {
  $form = array(
    '#type' => 'textfield',
    '#title' => t('Keywords'),
    '#default_value' => isset($meta->data['keywords']) ? $meta->data['keywords'] : '',
  );
  return $form;
}