Added fluid variable to the Module class

As a developer you still need to code for it (it's shown at work in the bootstrap) but you can use the variable to toggle fluid and fixed right from the module itself
This commit is contained in:
Josh Sherman 2012-10-14 17:53:23 -04:00
parent b05a1691f2
commit 3c2c936cee
6 changed files with 28 additions and 6 deletions

View file

@ -260,7 +260,7 @@ class Controller extends Object
$display = new $display_class();
// Assigns the template / template variables
$display->setTemplateVariables($module->template, $template_basename, $css_class, $js_basename);
$display->setTemplateVariables($module->template, $template_basename, $css_class, $js_basename, $module->fluid);
// Checks the templates
$template_exists = $display->templateExists();