How can I create HMVC structure in cakephp

How can I create HMVC structure in cakephp? I want to create a multi user access control in cakephp. Can any one help me out with this?

The only way I can workout how to do it is creating plugins as they seem to resemble closely to what I see as HMVC if that is any help

bin/cake bake plugin plugin-name
bin/cake bake controller --plugin plugin-name controller-name
bin/cake bake model --plugin plugin-name model-name
bin/cake bake template --plugin plugin-name template-name
or
bin/cake bake all --plugin plugin-name name

Cheers

Mal