Widgitized the output

This commit is contained in:
Deon George
2012-11-30 09:58:15 +11:00
parent 808730e1e3
commit 4b51fc2727
40 changed files with 1139 additions and 1165 deletions

View File

@@ -65,22 +65,22 @@ class Controller_Node extends Controller_TemplateDefault {
Block::add(array(
'title'=>sprintf('%s %s',_('Detailed Node Information for'),$no->NODE_NAME),
'body'=>View::factory('node/detail')->set('node',$no),
'body'=>View::factory('node/detail')->set('o',$no),
));
Block::add(array(
'title'=>_('Protected File System Information'),
'body'=>View::factory('node/detail_filesystem')->set('node',$no),
'body'=>View::factory('node/filesystems')->set('o',$no),
));
Block::add(array(
'title'=>_('Sequential Volume Usage Information'),
'body'=>View::factory('node/detail_volumes')->set('node',$no),
'body'=>View::factory('node/volumes')->set('o',$no),
));
Block::add(array(
'title'=>_('Schedule Information'),
'body'=>View::factory('node/detail_schedule')->set('node',$no),
'body'=>View::factory('node/schedule')->set('o',$no),
));
}
}