Changeset 2085 in ExiteCMS
- Timestamp:
- 11/30/08 12:31:00 (3 years ago)
- Files:
-
- 9 edited
-
themes/public/BackOff/php-files/themes/BackOff/theme.php (modified) (2 diffs)
-
themes/public/ChristmasDays/php-files/themes/ChristmasDays/theme.php (modified) (3 diffs)
-
themes/public/DIV/php-files/themes/DIV/theme.php (modified) (2 diffs)
-
themes/public/Hezo/php-files/themes/Hezo/theme.php (modified) (2 diffs)
-
themes/public/Hobugt/php-files/themes/Hobugt/theme.php (modified) (2 diffs)
-
themes/public/IcyXmas/php-files/themes/IcyXmas/theme.php (modified) (4 diffs)
-
themes/public/Localize/php-files/themes/Localize/theme.php (modified) (2 diffs)
-
themes/public/Luna/php-files/themes/Luna/theme.php (modified) (2 diffs)
-
trunk/themes/ExiteCMS/theme.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themes/public/BackOff/php-files/themes/BackOff/theme.php
r2036 r2085 141 141 | Left column (only if not in full-screen mode) | 142 142 +-----------------------------------------------------*/ 143 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 143 144 if (!FULL_SCREEN) { 144 145 // Get the config for all leftside panels 145 load_panels( 'left');146 load_panels($side); 146 147 // if any leftside panel found 147 if (count_panels( 'left') > 0) {148 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";148 if (count_panels($side) > 0) { 149 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 149 150 // load the templates for the left-side column 150 load_templates( 'left', '');151 load_templates($side, ''); 151 152 echo " </td>\n"; 152 153 } … … 181 182 | Right column (only if not in full-screen mode) | 182 183 +-----------------------------------------------------*/ 184 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 183 185 if (!FULL_SCREEN) { 184 186 // Get the config for all rightside panels 185 load_panels( 'right');187 load_panels($side); 186 188 // if any rightside panel found 187 if (count_panels( 'right') > 0) {188 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";189 if (count_panels($side) > 0) { 190 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 189 191 // load the templates for the right-side column 190 load_templates( 'right', '');192 load_templates($side, ''); 191 193 echo " </td>\n"; 192 194 } -
themes/public/ChristmasDays/php-files/themes/ChristmasDays/theme.php
r2053 r2085 136 136 | Left column (only if not in full-screen mode) | 137 137 +-----------------------------------------------------*/ 138 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 138 139 if (!FULL_SCREEN) { 139 140 // Get the config for all leftside panels 140 load_panels( 'left');141 load_panels($side); 141 142 // if any leftside panel found 142 if (count_panels( 'left') > 0) {143 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";143 if (count_panels($side) > 0) { 144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 144 145 // load the templates for the left-side column 145 load_templates( 'left', '');146 load_templates($side, ''); 146 147 echo " </td>\n"; 147 148 } 148 echo " <td valign='top' class='main-bg' width='3'></td>\n";149 149 } 150 150 /*-----------------------------------------------------+ … … 177 177 | Right column (only if not in full-screen mode) | 178 178 +-----------------------------------------------------*/ 179 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 180 if (!FULL_SCREEN) { 180 181 // Get the config for all rightside panels 181 load_panels( 'right');182 load_panels($side); 182 183 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";184 if (count_panels($side) > 0) { 185 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 186 // load the templates for the right-side column 186 load_templates( 'right', '');187 load_templates($side, ''); 187 188 echo " </td>\n"; 188 189 } … … 201 202 $variables = array(); 202 203 203 // define the footer panel 204 // load the footer panels 205 load_panels('footer'); 206 207 // get MySQL host info 208 $variables['MySQLinfo'] = mysql_get_server_info(); 209 210 // define the footer template 204 211 $template_panels[] = array('type' => 'footer', 'name' => '_footer', 'template' => '_footer.tpl'); 205 212 $template_variables['_footer'] = $variables; 206 213 214 // load the footer templates 207 215 load_templates('footer', ''); 208 216 -
themes/public/DIV/php-files/themes/DIV/theme.php
r2038 r2085 137 137 | Left column (only if not in full-screen mode) | 138 138 +-----------------------------------------------------*/ 139 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 139 140 if (!FULL_SCREEN) { 140 141 // Get the config for all leftside panels 141 load_panels( 'left');142 load_panels($side); 142 143 // if any leftside panel found 143 if (count_panels( 'left') > 0) {144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";144 if (count_panels($side) > 0) { 145 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 145 146 // load the templates for the left-side column 146 load_templates( 'left', '');147 load_templates($side, ''); 147 148 echo " </td>\n"; 148 149 } … … 177 178 | Right column (only if not in full-screen mode) | 178 179 +-----------------------------------------------------*/ 180 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 181 if (!FULL_SCREEN) { 180 182 // Get the config for all rightside panels 181 load_panels( 'right');183 load_panels($side); 182 184 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";185 if (count_panels($side) > 0) { 186 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 187 // load the templates for the right-side column 186 load_templates( 'right', '');188 load_templates($side, ''); 187 189 echo " </td>\n"; 188 190 } -
themes/public/Hezo/php-files/themes/Hezo/theme.php
r2040 r2085 137 137 | Left column (only if not in full-screen mode) | 138 138 +-----------------------------------------------------*/ 139 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 139 140 if (!FULL_SCREEN) { 140 141 // Get the config for all leftside panels 141 load_panels( 'left');142 load_panels($side); 142 143 // if any leftside panel found 143 if (count_panels( 'left') > 0) {144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";144 if (count_panels($side) > 0) { 145 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 145 146 // load the templates for the left-side column 146 load_templates( 'left', '');147 load_templates($side, ''); 147 148 echo " </td>\n"; 148 149 } … … 177 178 | Right column (only if not in full-screen mode) | 178 179 +-----------------------------------------------------*/ 180 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 181 if (!FULL_SCREEN) { 180 182 // Get the config for all rightside panels 181 load_panels( 'right');183 load_panels($side); 182 184 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";185 if (count_panels($side) > 0) { 186 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 187 // load the templates for the right-side column 186 load_templates( 'right', '');188 load_templates($side, ''); 187 189 echo " </td>\n"; 188 190 } -
themes/public/Hobugt/php-files/themes/Hobugt/theme.php
r2062 r2085 137 137 | Left column (only if not in full-screen mode) | 138 138 +-----------------------------------------------------*/ 139 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 139 140 if (!FULL_SCREEN) { 140 141 // Get the config for all leftside panels 141 load_panels( 'left');142 load_panels($side); 142 143 // if any leftside panel found 143 if (count_panels( 'left') > 0) {144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";144 if (count_panels($side) > 0) { 145 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 145 146 // load the templates for the left-side column 146 load_templates( 'left', '');147 load_templates($side, ''); 147 148 echo " </td>\n"; 148 149 } … … 177 178 | Right column (only if not in full-screen mode) | 178 179 +-----------------------------------------------------*/ 180 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 181 if (!FULL_SCREEN) { 180 182 // Get the config for all rightside panels 181 load_panels( 'right');183 load_panels($side); 182 184 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";185 if (count_panels($side) > 0) { 186 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 187 // load the templates for the right-side column 186 load_templates( 'right', '');188 load_templates($side, ''); 187 189 echo " </td>\n"; 188 190 } -
themes/public/IcyXmas/php-files/themes/IcyXmas/theme.php
r2002 r2085 145 145 | Left column (only if not in full-screen mode) | 146 146 +-----------------------------------------------------*/ 147 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 147 148 if (!FULL_SCREEN) { 148 149 // Get the config for all leftside panels 149 load_panels( 'left');150 load_panels($side); 150 151 // if any leftside panel found 151 if (count_panels( 'left') > 0) {152 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";152 if (count_panels($side) > 0) { 153 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 153 154 // load the templates for the left-side column 154 load_templates( 'left', '');155 load_templates($side, ''); 155 156 echo " </td>\n"; 156 157 } … … 159 160 | Center column | 160 161 +-----------------------------------------------------*/ 161 echo " <td valign='top' class='main-bg'> ";162 echo " <td valign='top' class='main-bg'>\n"; 162 163 163 164 // if in full-screen mode, activate the navigation header panel … … 185 186 | Right column (only if not in full-screen mode) | 186 187 +-----------------------------------------------------*/ 188 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 187 189 if (!FULL_SCREEN) { 188 190 // Get the config for all rightside panels 189 load_panels( 'right');191 load_panels($side); 190 192 // if any rightside panel found 191 if (count_panels( 'right') > 0) {192 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";193 if (count_panels($side) > 0) { 194 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 193 195 // load the templates for the right-side column 194 load_templates( 'right', '');196 load_templates($side, ''); 195 197 echo " </td>\n"; 196 198 } … … 209 211 $variables = array(); 210 212 211 // define the footer panel 213 // load the footer panels 214 load_panels('footer'); 215 216 // get MySQL host info 217 $variables['MySQLinfo'] = mysql_get_server_info(); 218 219 // define the footer template 212 220 $template_panels[] = array('type' => 'footer', 'name' => '_footer', 'template' => '_footer.tpl'); 213 221 $template_variables['_footer'] = $variables; 214 222 223 // load the footer templates 215 224 load_templates('footer', ''); 216 225 -
themes/public/Localize/php-files/themes/Localize/theme.php
r2065 r2085 137 137 | Left column (only if not in full-screen mode) | 138 138 +-----------------------------------------------------*/ 139 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 139 140 if (!FULL_SCREEN) { 140 141 // Get the config for all leftside panels 141 load_panels( 'left');142 load_panels($side); 142 143 // if any leftside panel found 143 if (count_panels( 'left') > 0) {144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";144 if (count_panels($side) > 0) { 145 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 145 146 // load the templates for the left-side column 146 load_templates( 'left', '');147 load_templates($side, ''); 147 148 echo " </td>\n"; 148 149 } … … 177 178 | Right column (only if not in full-screen mode) | 178 179 +-----------------------------------------------------*/ 180 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 181 if (!FULL_SCREEN) { 180 182 // Get the config for all rightside panels 181 load_panels( 'right');183 load_panels($side); 182 184 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";185 if (count_panels($side) > 0) { 186 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 187 // load the templates for the right-side column 186 load_templates( 'right', '');188 load_templates($side, ''); 187 189 echo " </td>\n"; 188 190 } -
themes/public/Luna/php-files/themes/Luna/theme.php
r2068 r2085 137 137 | Left column (only if not in full-screen mode) | 138 138 +-----------------------------------------------------*/ 139 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 139 140 if (!FULL_SCREEN) { 140 141 // Get the config for all leftside panels 141 load_panels( 'left');142 load_panels($side); 142 143 // if any leftside panel found 143 if (count_panels( 'left') > 0) {144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";144 if (count_panels($side) > 0) { 145 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 145 146 // load the templates for the left-side column 146 load_templates( 'left', '');147 load_templates($side, ''); 147 148 echo " </td>\n"; 148 149 } … … 177 178 | Right column (only if not in full-screen mode) | 178 179 +-----------------------------------------------------*/ 180 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 181 if (!FULL_SCREEN) { 180 182 // Get the config for all rightside panels 181 load_panels( 'right');183 load_panels($side); 182 184 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";185 if (count_panels($side) > 0) { 186 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 187 // load the templates for the right-side column 186 load_templates( 'right', '');188 load_templates($side, ''); 187 189 echo " </td>\n"; 188 190 } -
trunk/themes/ExiteCMS/theme.php
r2033 r2085 137 137 | Left column (only if not in full-screen mode) | 138 138 +-----------------------------------------------------*/ 139 $side = (LOCALEDIR == "LTR" ? "left" : "right"); 139 140 if (!FULL_SCREEN) { 140 141 // Get the config for all leftside panels 141 load_panels( 'left');142 load_panels($side); 142 143 // if any leftside panel found 143 if (count_panels( 'left') > 0) {144 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- left'>\n";144 if (count_panels($side) > 0) { 145 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 145 146 // load the templates for the left-side column 146 load_templates( 'left', '');147 load_templates($side, ''); 147 148 echo " </td>\n"; 148 149 } … … 177 178 | Right column (only if not in full-screen mode) | 178 179 +-----------------------------------------------------*/ 180 $side = (LOCALEDIR == "LTR" ? "right" : "left"); 179 181 if (!FULL_SCREEN) { 180 182 // Get the config for all rightside panels 181 load_panels( 'right');183 load_panels($side); 182 184 // if any rightside panel found 183 if (count_panels( 'right') > 0) {184 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border- right'>\n";185 if (count_panels($side) > 0) { 186 echo " <td valign='top' width='".SIDE_WIDTH."' class='side-border-$side'>\n"; 185 187 // load the templates for the right-side column 186 load_templates( 'right', '');188 load_templates($side, ''); 187 189 echo " </td>\n"; 188 190 }
Note: See TracChangeset
for help on using the changeset viewer.
