public function getFields()
 {
     return array_merge(self::getBaseFields(), array('social_facebook' => array('type' => 'link', 'label' => 'Facebook', 'default' => 'ReadingPartners.org'), 'social_twitter' => array('type' => 'link', 'label' => 'Twitter', 'default' => 'readingpartners'), 'contact_street' => array('type' => 'text', 'label' => 'Street', 'default' => ''), 'contact_city' => array('type' => 'text', 'label' => 'City', 'default' => ''), 'contact_state' => array('type' => 'select', 'label' => 'State', 'options' => States::getAll(), 'default' => ''), 'contact_zip' => array('type' => 'text', 'label' => 'Zip', 'default' => ''), 'contact_email' => array('type' => 'email', 'label' => 'Email', 'default' => ''), 'contact_phone' => array('type' => 'text', 'label' => 'Phone', 'default' => ''), 'analytics_key' => array('type' => 'text', 'label' => 'Google Analytics ID', 'default' => ''), 'analytics_tag_manager_key' => array('type' => 'text', 'label' => 'Google Tag Manager ID', 'default' => '')));
 }