假设我有一个 PluginMyExtPlugin
并且有一条记录MyExtPlugin_Record_A
,并且这条记录有一个 field status
。
的 DB 字段MyExtPlugin_Record_A
是uid,name,status
。
对于 TCA 表格中的状态:
'status'=>array(
'type' => 'user'
'userFunc' => 'EXT:userClass.specialFunction'
)
我的 specialFunction 应该这样做:
current_uid_of_record= #get current uid of the record;
current_status= #get status for current_uid_of_record
if (current_status==0)
return 'Pending';
return 'Approved';
问题:如何获取正在添加或编辑的记录的当前 Uid?