But tweaked for a module instead of system-wide. When I repair and hit the desired URL (/#CoolModule/layout/setup) it is blank and I noticed that the layout/view is not being cached in /cache/modules/CoolModule like it does for other modules.
/modules/CoolModule/clients/base/layouts/setup/setup.php:
$viewdefs['CoolModule']['base']['layout']['setup'] = array(
'type' => 'simple',
//'span' => 12,
'components' =>
array(
array(
'view' => 'setup',
),
),
);
({
className: 'setup tcenter',
loadData: function (options) {
this.render();
}
})
/modules/CoolModule/clients/base/views/setup/setup.hbs:
<h1>My Setup View</h1>
do something!
Any help would be greatly appreciated!