我要做的是将当前登录的Frozennode / Administrator的admin user_id作为可编辑字段数组的值传递。这样我可以跟踪谁编辑了什么,我相信这可能非常简单,但无论我尝试什么,我似乎都无法得到它。
<?php
$admin_user_id = Auth::user()->getId();
return array(
// usual frozennode stuff..
'edit_fields' => array(
'heading' => array(
'title' => 'Heading',
'type' => 'text'
),
'images' => array(
'title' => 'Image',
'type' => 'image',
'location' => public_path() . '/img/content/',
'naming' => 'random',
'length' => 20
),
'user_id' => array(
'title' => 'Admin User',
'type' => 'text',
'editable' => false,
'value' => $admin_user_id
),
),
);