t('Site verification'), 'description' => t('These meta tags are used to confirm site ownership with search engines and other services.'), 'form' => array( '#weight' => 110, ), ); // Stack the verification codes after most others. $weight = 100; // Defaults used for all meta tags. $defaults = array( 'class' => 'DrupalTextMetaTag', 'context' => array('global'), 'group' => 'verification', ); $info['tags']['google-site-verification'] = array( 'label' => t('Google'), 'description' => t('A string provided by Google.'), 'weight' => ++$weight, ) + $defaults; $info['tags']['p:domain_verify'] = array( 'label' => t('Pinterest'), 'description' => t('A string provided by Pinterest, full details are available from the Pinterest online help.', array('@pinterest' => 'https://www.pinterest.com/', '@verify_url' => 'https://help.pinterest.com/en/articles/verify-your-website')), 'weight' => ++$weight, ) + $defaults; $info['tags']['msvalidate.01'] = array( 'label' => t('Bing'), 'description' => t('A string provided by Bing, full details are available from the Bing online help.', array('@bing' => 'http://www.bing.com/', '@verify_url' => 'http://www.bing.com/webmaster/help/how-to-verify-ownership-of-your-site-afcfefc6')), 'weight' => ++$weight, ) + $defaults; $info['tags']['yandex-verification'] = array( 'label' => t('Yandex'), 'description' => t('A string provided by Yandex, full details are available from the Yandex online help.', array('@yandex' => 'http://www.yandex.com/', '@verify_url' => 'http://api.yandex.com/webmaster/doc/dg/reference/hosts-type.xml')), 'weight' => ++$weight, ) + $defaults; return $info; }