how to add more than one batch actions?

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
leesiusing
Posts: 5
Joined: 2014-08-15 16:23

how to add more than one batch actions?

Post by leesiusing » 2014-09-21 18:24

how to add more than one batch actions?

udayvatturi
AppGini Super Hero
AppGini Super Hero
Posts: 85
Joined: 2014-06-14 03:08
Location: India
Contact:

Re: how to add more than one batch actions?

Post by udayvatturi » 2014-09-22 13:04

Code: Select all

function customers_batch_actions(&$args){
return array(
array(
'title' => 'Option1,
'function' => 'print_mail_labels',
'icon' => 'th-list'
),array(
'title' => 'Option2',
'function' => 'print_mail_labels',
'icon' => 'th-list'
),array(
'title' => 'Option3',
'function' => 'print_mail_labels',
'icon' => 'th-list'
)
);
}

Post Reply