0

我正在尝试编写一个 PHP 代码来验证字段中的表单输入。如果该字段已经有值,系统必须发送一条错误消息。如果没有值或值与输入相同,则可以提交表单。编辑后的代码是:

/**
* Implement a function to get the ID and the title of the referenced node
* of type Reservation
* by the nodereference field called Period
* in the currently edited node from type Board
* Try to do this by the node_load() instead of the database query
* Is it the correct method to get the edited node's ID?
**/
function period_get_value() {
$thisnodeboard = $node->field_period_1[$node->language][0]['nid'];
$reservationrec = node_load(array('nid'=>$thisnodeboard));
return $reservationrec->title;
}
/**
* Implement the hook_form_FORM_ID_alter function to validate
* if the field Period has already value set
* and if there is such to check if it is the same as the input value
**/
function period_validate_form_slickgrid_editor_form_alter(&$form, $form_state){
/**
* The current value is the title of the referenced node
**/
$valcurr = period_get_value();
$valnew = $form_state['values']['field_period_1'];
if (isset($valcurr)&&($valcurr!=$valnew)){
    form_set_error('field_period_1', t('There is already value set for this field'));
  }
return $form;
}

但它仍然不起作用 - 不设置任何消息并允许更改 field_period_1 中的现有值。

4

1 回答 1

0

首先,在 D7 中编写手动 SQL 查询绝对是最后的手段。

好的,所以您实际上只想阻止用户在创建节点后更新字段。

你可以做两件事之一。如果您只想阻止从节点/编辑表单进行编辑,您可以实现 hook_form_FORM_ID_alter() 然后添加您自己的验证或提交处理程序。然后,您将验证该字段是否未更改并采取相应措施。

如果您想防止它在任何地方发生,例如以编程方式。您可以实现 hook_node_update() 并检查 $node->is_new 和 $node->type 以防止更改非新节点。

于 2013-01-31T12:29:19.317 回答