{{/if}}
{{php}}
$hook_data = MyEventTrigger($hook_name_form_list_operate, [
'hook_name' => $hook_name_form_list_operate,
'is_backend' => true,
'id' => isset($form_table_data_list[$i][$form_table['base']['key_field']]) ? $form_table_data_list[$i][$form_table['base']['key_field']] : 0,
'data' => $form_table_data_list[$i],
]);
if(!empty($hook_data) && is_array($hook_data))
{
foreach($hook_data as $hook)
{
if(is_string($hook) || is_int($hook))
{
echo htmlspecialchars_decode($hook);
}
}
}
{{/php}}
{{/case}}
{{case radio}}
{{if isset($form_table_data_list[$i][$form_table['base']['key_field']])}}
{{if
!isset($t['not_show_data']) or
empty($t['not_show_key']) or
(is_array($t['not_show_data']) and isset($form_table_data_list[$i][$t['not_show_key']]) and !in_array($form_table_data_list[$i][$t['not_show_key']], $t['not_show_data'])) or
(isset($t['not_show_type']) and isset($form_table_data_list[$i][$t['not_show_key']]) and (
($t['not_show_type'] eq 0 and $form_table_data_list[$i][$t['not_show_key']] eq $t['not_show_data']) or
($t['not_show_type'] eq 1 and $form_table_data_list[$i][$t['not_show_key']] gt $t['not_show_data']) or
($t['not_show_type'] eq 2 and $form_table_data_list[$i][$t['not_show_key']] lt $t['not_show_data'])
))
}}
{{/if}}
{{/if}}
{{/case}}
{{case checkbox}}
{{if isset($form_table_data_list[$i][$form_table['base']['key_field']])}}
{{if
!isset($t['not_show_data']) or
empty($t['not_show_key']) or
(is_array($t['not_show_data']) and isset($form_table_data_list[$i][$t['not_show_key']]) and !in_array($form_table_data_list[$i][$t['not_show_key']], $t['not_show_data'])) or
(isset($t['not_show_type']) and isset($form_table_data_list[$i][$t['not_show_key']]) and (
($t['not_show_type'] eq 0 and $form_table_data_list[$i][$t['not_show_key']] eq $t['not_show_data']) or
($t['not_show_type'] eq 1 and $form_table_data_list[$i][$t['not_show_key']] gt $t['not_show_data']) or
($t['not_show_type'] eq 2 and $form_table_data_list[$i][$t['not_show_key']] lt $t['not_show_data'])
))
}}
{{/if}}
{{/if}}
{{/case}}
{{/switch}}
{{if !empty($t['unique_key']) and $t['view_type'] neq 'operate'}}
{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true}}