> php教程 > PHP源码 > drupal-7通过字段名字,输出该字段的form-html

drupal-7通过字段名字,输出该字段的form-html

PHP中文网
풀어 주다: 2016-05-25 17:07:53
원래의
1277명이 탐색했습니다.

   

<?php
/*
作者:drupalhunter
联系方式:drupalhunter@foxmail.com
功能:通过字段名字,也可设置辅助参数:字段所属的内容类型等,输出该字段的form-html代码
使用:自己看着办!不懂再说
适用版本:drupal 7
这只是一个简单的测试函数,如果亲需要更多地容错处理,请自行添加!
*/
 function output_field_7($field_name,$bundle=&#39;&#39;,$entity_type=&#39;&#39;){
	$form_state = array();
	$items = array();
	$element[&#39;#parents&#39;] = array();
	$field_info = field_info_field($field_name);
	if($bundle==&#39;&#39; || $entity_type==&#39;&#39;){
		$array_entity_type = array_keys($field_info[&#39;bundles&#39;]);
		$array_bundle = $field_info[&#39;bundles&#39;];
		$entity_type = $array_entity_type[0];
		$bundle = $array_bundle[$entity_type][0];
	}
	$field_instance = field_info_instance($entity_type, $field_name, $bundle);
	echo(render(field_default_form($field_instance[&#39;entity_type&#39;], NULL, $field_info, $field_instance, LANGUAGE_NONE, $items, $element, $form_state, 0)));
 }
로그인 후 복사

                                   

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿