atk4 / mastercrud

Manipulates ATK CRUD through the force of references
https://atk4.org
MIT License
9 stars 7 forks source link

Feature/menu actions #7

Closed romaninsh closed 6 years ago

romaninsh commented 6 years ago

Adds ability to define callable Menu Actions:

    ['menuActions'=>[
        'archive'=>function($p, $model, $key) {
            $p->add('LoremIpsum');

           // you could execute a $model->archive() 
           // $key will contain 'archive', so you can re-use it for method name.

        },
    ]]