我得到了dpm($ form)的工作。太好了!这是查看数据的更好方法。我仍在试图找出来自哪里的东西,例如:位置经度&纬度。 “经度”这个词在20个不同的地方被引用。我认为这可能是隔离此输入字段的文本框的地方。 DPM($形式[ '#field_info'] [ 'field_store_latitude'] [ 'location_settings'] [ '形式'] [ '字段']);
有关如何追踪单个输入元素的任何提示?
**这不是答案,而是我第一个问题的补充**
go googletorp -
我正在尝试使用hook_form_alter修改现有表单。
经过几个小时的探索,我现在可以关闭这样一个表格的位置(经度/纬度)部分:
未设置($形式[ 'field_store_latitude']);
然而,仅关闭这样的纬度,不起作用:
未设置($形式[ 'field_store_latitude'] [ '0'] [ '#location_settings'] [ '形式'] [ '字段'] [ 'locpick']);
我找不到一种简单的方法来将html源代码中的id和名称与Krumo生成的数组相关联。 在这种情况下,id称为“edit-field-store-latitude-0-locpick-user-latitude”。
我需要一个用于识别Drupal形式的表单元素的方法或指南。
我想我已经找到了解决方案
<?php
// allows you to alter locations fields, which are tricky to access.
// this will require a patch in location module described here:
// http://drupal.org/node/381458#comment-1287362
/**
* Implementation of custom _element_alert() hook.
*/
function form_overrides_location_element_alter(&$element){
// change some location descriptions
$element['locpick']['user_latitude']['#description'] = ' ' . t('Use decimal notation.');
$element['locpick']['user_longitude']['#description'] = ' ' . t('See <a href=!url target=_blank>our help page</a> for more information.', array('!url' => url('latlon_help')));
// or make them disappear entirely
unset($element['locpick']['user_longitude']);
unset($element['locpick']['user_latitude']);
}
/**
* Implementation of form_alter hook.
*/
function form_overrides_form_alter(&$form, $form_state, $form_id) {
switch ($form_id) {
case 'user_profile_form':
// change titles in user profile form
$form['account']['name']['#title'] = t('Login Name');
$form['account']['mail']['#title'] = t('Email');
break;
case 'retailer_node_form':
// let's check what is supposed to be here...
print '<pre>';
//print_r($form);
dsm($form);
print '</pre>';
// this works to remove the city
unset($form['field_myvar_latitude']['0']['#location_settings']['form']['fields']['city']);
// let's try #after_build property
$form['#after_build'][]='mymodule_after_build_mynode';
break;
}
}
function mymodule_after_build_mynode($form, $form_values) {
// This will not work for locations fields
return $form;
}`enter code here`
答案 0 :(得分:0)
因此,有一种偷偷摸摸的方式来改变位置字段,你需要做的是使用#after_built
回调:
/**
* Implements hook_form_alter().
*/
function mymodule_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'x_node_form') {
// alter the location field
if (isset($form['locations'])) {
$form['locations']['#after_build'][] = 'mymodule_alter_location_field';
}
}
}
/**
* Remove the delete checkbox from location element.
*/
function mymodule_alter_location_field($form_element, &$form_state) {
$location = $form_element[0]; // The location field which you can alter
return $form_element;
}