You are here

function simplemeta_add in Simple Meta 7

Same name and namespace in other branches
  1. 6.2 simplemeta.admin.inc \simplemeta_add()

Menu callback for creating new SimpleMeta configurations.

Return value

array form structure to render

1 string reference to 'simplemeta_add'
simplemeta_menu in ./simplemeta.module
Implements hook_menu().

File

./simplemeta.admin.inc, line 56
Administration

Code

function simplemeta_add() {
  $meta = new stdClass();
  $meta->data = array();
  $meta->language = '';
  return drupal_get_form('simplemeta_meta_form', $meta);
}