The mxBB Development Team'; // // When creating a new template, you normally "clone" a template and modify a number of *.tpl files. // For similar templates this means only a few files are different. // For example: you may have a template similar to subSilver, but with a different overall_header.tpl - the other files are identical. // Then this template should only contain one *.tpl file, namely overall_header.tpl, // and with $mx_template_settings['cloned_template'] = 'subSilver'. // If this template is a full set of *.tpl files, leave this blank. $mx_template_settings['cloned_template'] = '_core'; // // Block border graphics are defined in mx_main_layout.tpl, within the 'graph_border' template environment. // Turning this setting 'false' will disable block border graphics. $mx_template_settings['border_graphics'] = false; /********************************************************************************\ | Define what graphics bundles to use | - these are very handy paths to ALL kind of phpBB/MX-Publisher graphics \********************************************************************************/ $mx_images['mx_graphics']['general'] = file_exists( $mx_root_path . $current_template_path . "/images/logo.gif" ) ? $current_template_path . "/images" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/logo.gif" ) ? $cloned_template_path . "/images" : $default_template_path . "/images" ); $mx_images['mx_graphics']['page_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/page_icons" ) ? $current_template_path . "/images/page_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/page_icons" ) ? $cloned_template_path . "/images/page_icons" : $default_template_path . "/images/page_icons" ); $mx_images['mx_graphics']['block_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/block_icons" ) ? $current_template_path . "/images/block_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/block_icons" ) ? $cloned_template_path . "/images/block_icons" : $default_template_path . "/images/block_icons" ); $mx_images['mx_graphics']['menu_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/menu_icons" ) ? $current_template_path . "/images/menu_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/menu_icons" ) ? $cloned_template_path . "/images/menu_icons" : $default_template_path . "/images/menu_icons" ); $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); $mx_images['mx_graphics']['phpbb_icons'] = !empty($current_template_path) && file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( !empty($cloned_template_path) && file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); // // Prefix all paths to get full img URLs // $current_template_images = PORTAL_URL . $mx_images['mx_graphics']['general']; // Logo etc $current_template_page_images = PORTAL_URL . $mx_images['mx_graphics']['page_icons']; // Used by adminCP - Pages $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons $current_template_menu_images = PORTAL_URL . $mx_images['mx_graphics']['menu_icons']; // Used by adminCP - Navigation Menu $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the MX-Publisher adminCP $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template $current_template_theme_images = PORTAL_URL . $current_template_path . '/theme/images'; // // Standalone MX-Publisher installation? Where are the phpbb images? // //$current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template // // Define the icon css style // $mx_images['mx_graphics']['icon_style'] = ''; /********************************************************************************\ | Page Navigation Images | 1. If you want to control the overall_header.tpl images from this *.cfg file, make defintions below | 2. Or if not, use hardcoded image paths in overall_header.tpl, just like in the phpBB standard subSilver overall_header.tpl. \********************************************************************************/ // // Use MX-Publisher graphics - normally the menu_icons bundle // $mx_images['mx_nav_home'] = "$current_template_menu_images/icon_home.gif"; // {NAV_IMAGES_HOME} $mx_images['mx_nav_forum'] = "$current_template_menu_images/icon_forum.gif"; // {NAV_IMAGES_FORUM} $mx_images['mx_nav_profile'] = "$current_template_menu_images/icon_profile.gif"; // {NAV_IMAGES_PROFILE} $mx_images['mx_nav_faq'] = "$current_template_menu_images/icon_faq.gif"; // {NAV_IMAGES_FAQ} $mx_images['mx_nav_search'] = "$current_template_menu_images/icon_search.gif"; // {NAV_IMAGES_SEARCH} $mx_images['mx_nav_members'] = "$current_template_menu_images/icon_members.gif"; // {NAV_IMAGES_MEMBERS} $mx_images['mx_nav_groups'] = "$current_template_menu_images/icon_groups.gif"; // {NAV_IMAGES_GROUPS} $mx_images['mx_nav_mail'] = "$current_template_menu_images/icon_mail.gif"; // {NAV_IMAGES_PRIVMSG} $mx_images['mx_nav_login'] = "$current_template_menu_images/icon_login.gif"; // {NAV_IMAGES_LOGIN_LOGOUT} $mx_images['mx_nav_register'] = "$current_template_menu_images/icon_register.gif"; // {NAV_IMAGES_REGISTER} // // Use standard phpBB graphics // /* $mx_images['mx_nav_home'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['mx_nav_forum'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['mx_nav_profile'] = "$current_template_phpbb_images/icon_mini_profile.gif"; $mx_images['mx_nav_faq'] = "$current_template_phpbb_images/icon_mini_faq.gif"; $mx_images['mx_nav_search'] = "$current_template_phpbb_images/icon_mini_search.gif"; $mx_images['mx_nav_members'] = "$current_template_phpbb_images/icon_mini_members.gif"; $mx_images['mx_nav_groups'] = "$current_template_phpbb_images/icon_mini_groups.gif"; $mx_images['mx_nav_mail'] = "$current_template_phpbb_images/icon_mini_message.gif"; $mx_images['mx_nav_login'] = "$current_template_phpbb_images/icon_mini_login.gif"; $mx_images['mx_nav_register'] = "$current_template_phpbb_images/icon_mini_register.gif"; */ /********************************************************************************\ | Block Images | - these images are used for the block editCP buttons and controls \********************************************************************************/ $mx_images['mx_contract'] = "$current_template_block_images/contract.gif"; $mx_images['mx_expand'] = "$current_template_block_images/expand.gif"; $mx_images['mx_block_edit_admin'] = "$current_template_block_images/block_edit_admin.gif"; $mx_images['mx_block_edit_split'] = "$current_template_block_images/block_edit_split.gif"; $mx_images['mx_block_edit'] = "$current_template_block_images/block_edit.gif"; $mx_images['mx_block_hidden'] = "$current_template_block_images/block_hidden.gif"; /********************************************************************************\ | adminCP/editCP Images | - these images are used for the adminCP & block editCP \********************************************************************************/ $mx_images['mx_spacer'] = "$current_template_phpbb_images/spacer.gif"; // // phpBB Graphics - for standalone MX-Publisher installation /* $images['icon_quote'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; $images['icon_edit'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['icon_search'] = "$current_template_phpbb_images/{LANG}/icon_search.gif"; $images['icon_profile'] = "$current_template_phpbb_images/{LANG}/icon_profile.gif"; $images['icon_pm'] = "$current_template_phpbb_images/{LANG}/icon_pm.gif"; $images['icon_email'] = "$current_template_phpbb_images/{LANG}/icon_email.gif"; $images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; $images['icon_ip'] = "$current_template_phpbb_images/{LANG}/icon_ip.gif"; $images['icon_www'] = "$current_template_phpbb_images/{LANG}/icon_www.gif"; $images['icon_icq'] = "$current_template_phpbb_images/{LANG}/icon_icq_add.gif"; $images['icon_aim'] = "$current_template_phpbb_images/{LANG}/icon_aim.gif"; $images['icon_yim'] = "$current_template_phpbb_images/{LANG}/icon_yim.gif"; $images['icon_msnm'] = "$current_template_phpbb_images/{LANG}/icon_msnm.gif"; $images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; $images['icon_minipost_new'] = "$current_template_phpbb_images/icon_minipost_new.gif"; $images['icon_latest_reply'] = "$current_template_phpbb_images/icon_latest_reply.gif"; $images['icon_newest_reply'] = "$current_template_phpbb_images/icon_newest_reply.gif"; $images['forum'] = "$current_template_phpbb_images/folder_big.gif"; $images['forum_new'] = "$current_template_phpbb_images/folder_new_big.gif"; $images['forum_locked'] = "$current_template_phpbb_images/folder_locked_big.gif"; $images['folder'] = "$current_template_phpbb_images/folder.gif"; $images['folder_new'] = "$current_template_phpbb_images/folder_new.gif"; $images['folder_hot'] = "$current_template_phpbb_images/folder_hot.gif"; $images['folder_hot_new'] = "$current_template_phpbb_images/folder_new_hot.gif"; $images['folder_locked'] = "$current_template_phpbb_images/folder_lock.gif"; $images['folder_locked_new'] = "$current_template_phpbb_images/folder_lock_new.gif"; $images['folder_sticky'] = "$current_template_phpbb_images/folder_sticky.gif"; $images['folder_sticky_new'] = "$current_template_phpbb_images/folder_sticky_new.gif"; $images['folder_announce'] = "$current_template_phpbb_images/folder_announce.gif"; $images['folder_announce_new'] = "$current_template_phpbb_images/folder_announce_new.gif"; $images['post_new'] = "$current_template_phpbb_images/{LANG}/post.gif"; $images['post_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; $images['reply_new'] = "$current_template_phpbb_images/{LANG}/reply.gif"; $images['reply_locked'] = "$current_template_phpbb_images/{LANG}/reply-locked.gif"; $images['pm_inbox'] = "$current_template_phpbb_images/msg_inbox.gif"; $images['pm_outbox'] = "$current_template_phpbb_images/msg_outbox.gif"; $images['pm_savebox'] = "$current_template_phpbb_images/msg_savebox.gif"; $images['pm_sentbox'] = "$current_template_phpbb_images/msg_sentbox.gif"; $images['pm_readmsg'] = "$current_template_phpbb_images/folder.gif"; $images['pm_unreadmsg'] = "$current_template_phpbb_images/folder_new.gif"; $images['pm_replymsg'] = "$current_template_phpbb_images/{LANG}/reply.gif"; $images['pm_postmsg'] = "$current_template_phpbb_images/{LANG}/msg_newpost.gif"; $images['pm_quotemsg'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; $images['pm_editmsg'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; $images['Topic_watch'] = ""; $images['topic_un_watch'] = ""; $images['topic_mod_lock'] = "$current_template_phpbb_images/topic_lock.gif"; $images['topic_mod_unlock'] = "$current_template_phpbb_images/topic_unlock.gif"; $images['topic_mod_split'] = "$current_template_phpbb_images/topic_split.gif"; $images['topic_mod_move'] = "$current_template_phpbb_images/topic_move.gif"; $images['topic_mod_delete'] = "$current_template_phpbb_images/topic_delete.gif"; $images['voting_graphic'][0] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][1] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][2] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][3] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][4] = "$current_template_phpbb_images/voting_bar.gif"; */ $images['voting_graphic'][0] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][1] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][2] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][3] = "$current_template_phpbb_images/voting_bar.gif"; $images['voting_graphic'][4] = "$current_template_phpbb_images/voting_bar.gif"; // // Define common theme colors (if not present in db) // $template_config_row['body_bgcolor'] = "FFFFFF"; $template_config_row['body_text'] = "383B3F"; $template_config_row['body_link'] = "006699"; $template_config_row['body_vlink'] = "006699"; $template_config_row['body_alink'] = "006699"; $template_config_row['body_hlink'] = "f3a625"; $template_config_row['tr_color1'] = "F7EEEE"; // row1 $template_config_row['tr_color2'] = "FBF4F4"; // row2 $template_config_row['tr_color3'] = "f1f1f1"; // row3 $template_config_row['th_color1'] = "FFA34F"; // bodyline border color $template_config_row['th_color2'] = "333333"; // forumline border color $template_config_row['th_color3'] = "d1d7dc"; // boxes border color $template_config_row['td_color1'] = "F7EEEE"; // code/quote boxes background $template_config_row['td_color2'] = "FBF4F4"; // post box background $template_config_row['fontface1'] = "Verdana,Arial,Helvetica,sans-serif"; $template_config_row['fontface2'] = "Trebuchet MS"; $template_config_row['fontface3'] = "Courier, \'Courier New\', sans-serif"; $template_config_row['fontsize3'] = "12"; $template_config_row['fontcolor1'] = "383B3F"; // Main font color $template_config_row['fontcolor2'] = "726363"; $template_config_row['fontcolor3'] = "FFA34F"; /********************************************************************************\ | CORE Images \********************************************************************************/ // // Logo // $mx_images['mx_logo'] = "$current_template_theme_images/logo.gif"; // // SiteLog // $mx_images['mx_dot'] = $images['folder']; // // Online Block // $mx_images['mx_who_is_online'] = "$current_template_theme_images/whosonline.gif"; ?>