Page 1 of 1

how to add more than one batch actions?

Posted: 2014-09-21 18:24
by leesiusing
how to add more than one batch actions?

Re: how to add more than one batch actions?

Posted: 2014-09-22 13:04
by udayvatturi

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'
)
);
}