我想使用尽可能多的标准TYPO3来创建一个表单来编辑来自tx_mytable的单个记录。
在pi1中我加载了表格的tca: t3lib_div :: loadTCA( 'tx_mytable');
现在我想使用标准函数来创建我的表单元素,或多或少像在后端完成的那样......
我在前端找到了这个,但找不到任何有用的例子: t3lib_TCEforms_fe.php(扩展了正常的t3lib_TCEforms)
这是正确的方法还是有更好的方法?
答案 0 :(得分:0)
我有一些工作,但在前端不是那么好的代码
这是一个链接,表明TCA不够,但需要在阵列中添加两个新条目 http://www.martin-helmich.de/?p=15
是itemFormElName和itemFormElValue
// include tceforms_fe (place outside class where pipase is included)
require_once(PATH_t3lib.'class.t3lib_tceforms_fe.php');
// load TCA for table in frontend
t3lib_div::loadTCA('tx_ogcrmdb_tasks');
// init tceforms
$this->tceforms = t3lib_div::makeInstance("t3lib_TCEforms_FE");
$this->tceforms->initDefaultBEMode(); // is needed ??
$this->tceforms->backPath = $GLOBALS['BACK_PATH']; // is empty... may not be needed
//////////REPEAT FOR EACH INPUT FIELD/////////
// start create input fields, here just a single select for responsible
// conf used for tceforms similar to but not exactly like normal TCA
$conftest = array(
'itemFormElName' => $GLOBALS['TCA']['tx_ogcrmdb_tasks']['columns']['responsible']['label'],
'itemFormElValue' => 1,
'fieldConf' => array(
'config' => $GLOBALS['TCA']['tx_ogcrmdb_tasks']['columns']['responsible']['config']
)
);
// create input field
$this->content .= $this->tceforms->getSingleField_SW('','',array(),$conftest);
// wrap in form
$output = '<form action="" name="editform" method="post">';
$output .= $this->content;
$output .= '</form>';
// wrap and return output
return $output;
仍在寻找输入字段的custem模板的工作示例。