You are here

function hook_simplemeta_info in Simple Meta 6.2

Same name and namespace in other branches
  1. 7 simplemeta.api.php \hook_simplemeta_info()
1 function implements hook_simplemeta_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

simplemeta_simplemeta_info in ./simplemeta.module
Implements hook_simplemeta_info()
1 invocation of hook_simplemeta_info()
simplemeta_get_info in ./simplemeta.module
Get info about meta elements from modules Basically, invokes all implementations of hook_simplemeta_info() Caches info in the {cache} table

File

./simplemeta.api.php, line 3

Code

function hook_simplemeta_info() {
  $info = array();
  $info['description'] = array(
    // required
    'title' => t('Description'),
    // required
    'form' => 'simplemeta_form_description',
    'validate' => NULL,
    'submit' => NULL,
    // required
    'theme' => 'simplemeta_meta_description',
  );
  return $info;
}