You are here

abstract.inc in Nodewords: D6 Meta Tags 5

Support file for ABSTRACT meta tag.

File

metatags/abstract.inc
View source
<?php

/**
 * @file
 * Support file for ABSTRACT meta tag.
 */
function nodewords_abstract_form($type, $value, $settings) {
  return array(
    '#type' => 'textfield',
    '#title' => t('Abstract'),
    '#default_value' => $value,
    '#size' => 60,
    '#maxlength' => $settings['max_size'],
    '#description' => t('Enter a short abstract for this page. Typically it is one sentence.'),
  );
}

Functions

Namesort descending Description
nodewords_abstract_form @file Support file for ABSTRACT meta tag.