'fieldset',
'#title' => t('Google Analytics settings'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['googleanalytics']['googleanalytics_account'] = array(
'#type' => 'textfield',
'#title' => t('Google Analytics account number'),
'#default_value' => variable_get('google_analytics', 'UA-'),
'#size' => 15,
'#maxlength' => 20,
'#required' => TRUE,
'#description' => t('The account number is unique to the websites domain. Click the Edit link in your Google Analytics account next to the appropriate profile on the Analytics Settings page, then select Check Status at the top-right of the table to find the account number (UA-xxxx-x) of your site. You can obtain a user account from the Google Analytics website.', array('@url' => 'http://www.google.com/analytics/')),
);
return $form;
}
?>