Skip to content
Snippets Groups Projects

full plugin mod for multiselection

Compare and Show latest version
1 file
+ 19
1
Preferences
Compare changes
@@ -34,7 +34,25 @@ class ZendAfi_Controller_Plugin_Manager_CustomField {
'label' => 'Rattacher un champ personnalisé',
'icon' => 'add_page']
];
return [];
return [
['url' => '/admin/custom-fields/up/id/%s',
'icon' => 'up',
'label' => 'Monter'],
['url' => '/admin/custom-fields/down/id/%s',
'icon' => 'down',
'label' => 'Descendre'],
['url' => '/admin/custom-fields/edit/id/%s',
'icon' => 'edit',
'label' => 'Modifier'],
['url' => '/admin/custom-fields/delete/id/%s',
'icon' => 'delete',
'label' => 'Supprimer',
'anchorOptions' => ['onclick' => "return confirm('Etes-vous sûr de vouloir supprimer ce champs ?');"]]
];
}
}
?>
\ No newline at end of file