<?php

function beautytips_forms_form_alter(&$form, &$form_state, $form_id) {
#	dpm($form_id);

	$icon='<span class="beautytips-icon-wrapper"><img class="beautytips-icon" src="/sites/all/themes/diy/images/icons/hover-help.png" /></span>';


	if($form_id=='company_profile_node_form') {
		$form['field_logo'][LANGUAGE_NONE][0]['#title'].=$icon;
	}

	if($form['#id']=='views-exposed-form-heimwerker-suchen-page') {
		#dpm($form);
	}
	if($form_id=='inserat_node_form') {
		$form['field_inserat_addresse'][LANGUAGE_NONE][0]['#title'].=$icon;
		$form['field_inserat_description'][LANGUAGE_NONE]['#suffix'].=$icon;
	}

	if($form_id=='user_profile_form') {
		
		$form['field_inserat_addresse'][LANGUAGE_NONE][0]['country']['#weight']=60;	
		$form['field_inserat_addresse'][LANGUAGE_NONE][0]['street_block']['thoroughfare']['#suffix']=$icon;
		$form['field_inserat_addresse'][LANGUAGE_NONE][0]['street_block']['thoroughfare']['#attributes']['class'][]='inline-block';
		
		$form['picture']['#suffix']=$icon;
		unset ($form['field_inserat_addresse'][LANGUAGE_NONE][0]['#title']);
		
	}
	
	if($form_id=='profile2_edit_anbieterprofil_form') {
    $form['profile_anbieterprofil']['field_dates_profile_listing'][LANGUAGE_NONE]['#suffix'].=$icon;
		$form['profile_anbieterprofil']['field_ausweisdokument'][LANGUAGE_NONE] += array('#suffix' => $icon);
		
#		unset($form['profile_anbieterprofil']['field_dates_profile_listing'][LANGUAGE_NONE][0]['#title']);
#		unset($form['profile_anbieterprofil']['field_dates_profile_listing'][LANGUAGE_NONE]['#title']);
#		$form['profile_anbieterprofil']['field_dates_profile_listing'][LANGUAGE_NONE][0]['#prefix'].='<label>zzzProfil verstecken</label>';
#		dpm($form);
		
	}
	if($form_id=='branche_node_form') {
		$form['field_eigenes_transportmittel'][LANGUAGE_NONE]['#title']='Sonstiges';
		$form['field_eigenes_werkzeug'][LANGUAGE_NONE]['#title']='';
		
		$form['field_erfahrung_beschr'][LANGUAGE_NONE]['#prefix'].=
		'<label>'.$form['field_erfahrung_beschr'][LANGUAGE_NONE][0]['#title'].'</label>'.'<i>Bitte stellen Sie sich kurz vor und beschreiben Sie Ihre Erfahrung</i>'.$icon;

		unset ($form['field_erfahrung_beschr'][LANGUAGE_NONE][0]['value']['#title']);

		$form['field_profil_verbergen'][LANGUAGE_NONE]['#suffix']=$icon;

	}
	
	
	if($form['#id']=='views-exposed-form-inserate-suche-map-page') {
		$form['field_inserat_branchen']['#weight']=1;
		$form['search_api_views_fulltext']['#weight']=2;
		$form['field_geofield_latlon_1_op']['#weight']=3;
		$form['submit']['#weight']=4;
		$form['sort_by']['#weight']=20;
	}

}
