![]() |
This tells AutoTheme whether to strip all of the tags in between <head>
and </head> from the Main Theme file. If you set this to false, then you
need to insure that you don't have any conflicting information here.
PHP-Nuke uses many <meta> tags and some <script>:
$strip_head = true;
This tells AutoTheme whether to alternate the summary articles on the home
page and use the summary1 and summary2.
$alternate_summary = true;
These are the file names that you want to use for your HTML templates for standard PHP-Nuke elements:
Main theme template file names
$template = array (
'main' => "theme.html",
'summary' => "summary.html",
'article' => "article.html",
'block' => "leftblock.html",
);
Display blocks on all pages
$block_display = array (
'left' => true,
'right' => false,
);
Style sheet, logo image and colors used by modules by default
$miscellaneous = array (
'stylesheet' => "",
'logo' => "default.gif",
'bgcolor1' => "#D4E1AE",
'bgcolor2' => "#99CC00",
'bgcolor3' => "#D4E1AE",
'bgcolor4' => "#FFFFFF",
'textcolor1' => "#000000",
'textcolor2' => "#660066"
);
Custom themed blocks - configure custom templates (*optional)
These override the standard settings above only for the specific block
Comment out or delete what you don't need
$custom_block = array (
'Modules' => "mainmenu.html",
'Survey' => "survey.html",
'Related Links' => "article-block.html",
'Article Rating' => "article-block.html"
);
Custom themed modules - configure custom templates, colors, image and block
display (*optional)
These override the standard settings above only for the specific module
Comment out or delete what you don't need
$custom_module['News'] = array (
Module specific template file names
'main' => "theme.html",
'block' => "block.html",
Block display for this module
'left' => true,
'right' => true
Style sheet, logo image and colors for this module
'stylesheet' => "",
'logo' => "thenews.gif",
'bgcolor1' => "#D4E1AE",
'bgcolor2' => "#99CC00",
'bgcolor3' => "#D4E1AE",
'bgcolor4' => "#FFFFFF",
'textcolor1' => "#000000",
'textcolor2' => "#660066"
);
$custom_module['Downloads'] = array (
Logo image and block display
'logo' => "downloads.gif",
'right' => false
);
$custom_module['Web_Links'] = array (
Block display for this module
'right' => false
);