
Originally Posted by
Meyer
thanks but not the answer i was looking for.
I would add a button in detail view and create a before save logic hook
so in detailviewdefs do
Code:
array (
'buttons' =>
array (
0 => 'EDIT',
1 => 'DUPLICATE',
2 => 'DELETE',
3 =>
array (
'customCode' => '<input title="Assign" class="button" onclick="this.form.action.value=\'Save\';" type="submit" name="assign" value="Assign">',
), Then in your before save logic hook
Code:
global $current_user;
if ($_REQUEST['assign'] == 'Assign') {
$bean->assigned_user_id = $current_user->id;
}
Bookmarks