how to add more than one batch actions?
Posted: 2014-09-21 18:24
how to add more than one batch actions?
A place where AppGini users can exchange ideas and help each other.
https://forums.appgini.com:443/phpbb/
https://forums.appgini.com:443/phpbb/viewtopic.php?f=7&t=1342
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'
)
);
}