PostNuke Help |
||
|---|---|---|
Previous |
Next |
|
load display theme
bool pnThemeLoad();
pnThemeLoad() loads the display theme as specified by the user, and sets a number of global variables for backwards-compatibility with older display themes.
This function loads true if the theme was loaded successfully, and false if the theme was not loaded successfully.
// Load in user theme
if (!pnThemeLoad()) {
die('Problem loading theme');
}
Previous |
Next |