Your premium source for custom modification services for phpBB |
![]() |
|
| |||
| Forums Files |
| Path | File Name | Description |
|---|---|---|
| / | common.php | This code does general housekeeping chores, things that need to be done before any templates (like page_header) are called. Currently it manages the $HTTP_XX_VARS arrays (clearing out any unexpected values), checks server settings (magic quotes, etc.), includes a bunch of other files used on every page (constants.php, template.php, sessions.php, and so on). |
| / | config.php | Contains the database connection info (username, hostname, database, password). This file is created during the installation process, and should not be edited unless you're moving from one host to another. MODs that update this file could be considered risky. |
| / | extension.inc | This file contains essentially one line of code... the extension (extention) for the php files. This was done in order to support versions with different extensions (php3 versus php) without recoding the entire application. You'll see $phpEx in almost every phpBB file; this is replaced by the extension defined in this file. |
| / | faq.php | This is the FAQ (Frequently Asked Questions) manager. When you request a FAQ, it will load the requested language file, or if nothing is requested, the default lang_faq.php. The FAQ format is very easy to manage; you can edit it with any text file once you understand the format. Just be sure to escape any quotes with the backslash \' otherwise you'll get errors. |
| / | groupcp.php | The Group Control Panel. Users can use this program to view public groups and their members, to join or leave a group. Group moderators use this program to add or remove members from their group. |
| / | index.php | The forum index. In a default installation the index lists the categories and forums that a user is authorized to view. |
| / | login.php | The process of logging in and out is managed by this code. |
| / | memberlist.php | The list of members for your phpBB board. |
| / | modcp.php | MODCP = Moderator Control Panel This code includes moderator options to split, move, lock, and delete multiple topics at the same time. Note that deleting individual posts (user feature) is done via posting.php and not modcp.php. |
| / | posting.php | Handles posting and editing tasks. |
| / | privmsg.php | The main code for the private message system |
| / | profile.php | This is really just a shell that loads or calls other included files. The file / function is based on the mode passed on the URL, which can include register, viewprofile, editprofile, activate, and others. |
| / | search.php | Search your topics and posts. Also used to search for users, believe it or not. |
| / | viewforum.php | From the index you click to view a forum, which calls this code. This page displays topics within the forum, sorted by most recent activity. |
| / | viewonline.php | Who's online on the board within the past few minutes? The default period is 5 minutes but it can be easily changed. |
| / | viewtopic.php | Viewtopic is the third step down. Index shows categories and forums, viewforum shows topics in a forum, viewtopic shows the posts that make up the topic. The default order is oldest first, newest last. This can be changed with a MOD. |
| /admin/ | admin_board.php | Manage the general configuration options (phpbb_config). One of the subtle issues with this page is that you cannot insert values, you can only update. That is why when you install MODs they will often provide SQL insert commands for board configuration options, as this page will not take care of that for you. |
| /admin/ | admin_db_utilities.php | This code is used to run the database utilities like backing up and restoring your database. An interesting footnote... the "restore" process can be used to run any SQL commands that are valid. You can use this to run the SQL required to install MODs if you don't have access to phpMyAdmin, as long as you are sure you know what you're doing. :-) |
| /admin/ | admin_disallow | Manage the banned user list (phpbb_banlist) |
| /admin/ | admin_forumauth.php | This admin page is used to manage forum permissions. |
| /admin/ | admin_forums.php | Manage the forums and categories (phpbb_categories, phpbb_forums). This program is used to create / edit / delete / reorder forums and categories and also to resync forum statistics. |
| /admin/ | admin_forum_prune.php | Do forum pruning (phpbb_forum_prune) |
| /admin/ | admin_groups.php | Manage the phpbb_groups table |
| /admin/ | admin_mass_email.php | Send out emails to groups, or to all forum members Uses a "bcc" strategy to avoid sending out a huge number of emails, but may be more likely to be identified as SPAM that way |
| /admin/ | admin_ranks.php | Manage the phpbb_ranks table |
| /admin/ | admin_smilies.php | Manage the smilies available on your board (phpbb_smilies) |
| /admin/ | admin_ug_auth.php | User Group permissions page |
| /admin/ | admin_users.php | Admin tool to review / update / edit / delete user accounts (phpbb_users) |
| /admin/ | admin_user_ban.php | Here you can control the banning of users. You can achieve this by banning either or both of a specific user or an individual or range of IP addresses or hostnames. These methods prevent a user from even reaching the index page of your board. To prevent a user from registering under a different username you can also specify a banned email address. Please note that banning an email address alone will not prevent that user from being able to log on or post to your board. You should use one of the first two methods to achieve this. |
| /admin/ | admin_words.php | phpBB2 provides a way for board administrators to *censor* words, by replacing one text string with another text string. This admin page is used to manage that table (phpbb_words). |
| /admin/ | index.php | Admin index... uses frames to display various admin pages as "modules". This is where the "call home" version check is also applied. If you want to turn that feature off you can edit this code and remove that check. Note that then you will be responsible for keeping your board up to date, and no whining is allowed. ;-) Code to remove the "Call Home" is documented as a free MOD on the phpBBDoctor catalog. |
| /admin/ | pagestart.php | Provides a similar purpose to "common.php" for regular pages... is used to set up / validate the session for an admin user. This is where the "admin reauthentication" code was added. If you use some other means to protect your admin pages (such as .htaccess) then you can remove the code from this page. The "call home" version check is in admin/index.php rather than this page. There's no need to perform that check for every single page, and this code (pagestart) is called from every single admin page. |
| /admin/ | page_footer_admin.php | This page is the rough equivalent to includes/page_tail.php for the "regular" phpBB pages. If there is any sort of clean-up work that you want to do on all admin pages, this is the place to go. For example this is the page that closes the database connection and invokes the gzip routines (if needed). |
| /admin/ | page_header_admin.php | This page is the rough equivalent to includes/page_header.php for "regular" phpBB pages. It does not do any sort of security check; that is done in pagestart.php (where it checks to see that the user is an admin and so on). |
| /db/ | db2.php | DB2 database functions |
| /db/ | msaccess.php | Microsoft Access database functions If you're really using MS Access for your forum database you are a brave, brave person :-) |
| /db/ | mssql-odbc.php | Microsoft SQL Server database functions |
| /db/ | mssql.php | Microsoft SQL Server database functions (non-ODBC) |
| /db/ | mysql.php | MySQL 3.x database functions |
| /db/ | mysql4.php | MySQL 4.x database functions |
| /db/ | postgres7.php | PostgreSQL database functions |
| /includes/ | auth.php | phpBB Authorization functions |
| /includes/ | bbcode.php | phpBB BB Code parsing and related functions |
| /includes/ | constants.php | various constants used throughout the phpBB system |
| /includes/ | emailer.php | includes functions related to sending email |
| /includes/ | functions.php | Various functions such as get_db_stat(), create_date(), and so on |
| /includes/ | functions_admin.php | Various admin functions that were split out to a separate file to allow them to be called from multiple locations |
| /includes/ | functions_post.php | Functions related to posting, like managing the search tables, inserting and updating the post, topic, and forum tables, and so on |
| /includes/ | functions_search.php | Functions related to searching. Includes clean_words(), split_words(), add_search_words(), remove_common(), remove_search_post(), and username_search(). |
| /includes/ | functions_selects.php | Functions to build drop-down selectors used in various locations in phpBB |
| /includes/ | functions_validate.php | Various validation functions, including validate_username(), validate_email(), and validate_optional_fields(). |
| /includes/ | page_header.php | Standard page header called in almost every phpBB page. This code sets up session variables, calls the appropriate header template, and populates it with various standard variables. |
| /includes/ | page_tail.php | The "footer" counterpart to page_header.php |
| /includes/ | prune.php | Contains the functions used to manage the forum / post pruning process |
| /includes/ | sessions.php | This file is the session manager for phpBB. It includes code and functions that establish (or remove) your session information. |
| /includes/ | smtp.php | SMTP mail functions |
| /includes/ | sql_parse.php | I've never looked at this file, have no idea what it does |
| /includes/ | template.php | Template processing system... this is the code that is responsible for turning template variables into actual content. |
| /includes/ | topic_review.php | If the user has requested a post "preview" during the posting process, then topic_review.php is called. |
| /includes/ | usercp_activate.php | Code used to activate users Included (called from) in profile.php usercp = user control panel |
| /includes/ | usercp_avatar.php | Avatar management functions Included in (called from) profile.php usercp = user control panel |
| /includes/ | usercp_confirm.php | New file in 2.0.11 (?) from a backport from 3.0, adds visual confirmation as an option Included in (called from) profile.php usercp = user control panel |
| /includes/ | usercp_email.php | If users are allowed to email via the board, this file is used |
| /includes/ | usercp_register.php | Registration code. However, this code is also used for editing an existing user profile as well as new registrations. So the filename is a bit confusing. It might should have been called usercp_profile.php instead. Included in (called from) profile.php usercp = user control panel |
| /includes/ | usercp_sendpasswd.php | Code used when user requests a new password Included in (called from) profile.php usercp = user control panel |
| /includes/ | usercp_viewprofile.php | Used to view a user profile. Note that this is a completely separate process from editing a profile, which is done with usercp_register.php instead. Included in (called from) profile.php usercp = user control panel |
| /language/lang_english/ | lang_admin.php | Admin-related language entries |
| /language/lang_english/ | lang_bbcode.php | BBCode notes in FAQ format, called from faq.php |
| /language/lang_english/ | lang_faq.php | This file contains the contents for the standard phpBB FAQ. The contents are stored in an array format which is detailed in the header of the file. With a few easy modificaitons to faq.php you can add additional FAQ pages to your board like a privacy policy or board rules. |
| /language/lang_english/ | lang_main.php | Main language file, contains strings used throughout the phpBB system. The strings are referenced via this include file in order to create a separate file for translators to work with. |
| /language/lang_english/ | search_stopwords.txt | A list of words that will be eliminated from the search_words table. Use this list to prevent frequently used words from filling up your search database. |
| /language/lang_english/ | search_synonyms.txt | A list of words that will be substituted in the search_words table. This allows you to search for various spellings (or misspellings) of common words like "teh" for "the" or "flavor" and "flavour" |
| /language/lang_english/email/ | admin_activate.tpl | The template file for the "welcome" email when admin activation is required. This template is for the email sent to the ADMIN and not to the user. |
| /language/lang_english/email/ | admin_send_email.tpl | This template contains the header sent out on all mass emails. If you want to change the text that appears at the top of your mass emails from your board, this is where to go. |
| /language/lang_english/email/ | admin_welcome_activated.tpl | This template contains the information sent out to a user after their account has been activated. |
| /language/lang_english/email/ | admin_welcome_inactive.tpl | This template contains the body of the email sent out to a user after they have registered when ADMIN ACTIVATION is required. See also user_welcome_inactive.tpl for the text sent out when USER ACTIVATION is required. |
| /language/lang_english/email/ | coppa_welcome_inactive.tpl | This template contains the text for the email sent out when COPPA has been invoked. COPPA is a privacy restriction for children under 13. |
| /language/lang_english/email/ | group_added.tpl | This template contains the text of the email sent out when a user has been added to a group. |
| /language/lang_english/email/ | group_approved.tpl | This template contains the text of the email sent out when a user has been approved for group membership. For certain types of groups a user will "apply" for membership. When the group moderator approves their application, this email is sent. |
| /language/lang_english/email/ | group_request.tpl | This template contains the text for the email sent to the group moderator when a user has requested membership. See also group_approved.tpl which contains the email sent after the application has been approved. |
| /language/lang_english/email/ | privmsg_notify.tpl | This template contains the text for the email sent when a new private message has been received. Note that this email is sent based on the user profile setting user_notify_pm from the phpbb_users table. |
| /language/lang_english/email/ | profile_send_email.tpl | This template contains the text for an email sent via the board. This template is not used at all if the board configuration "User email via board" is turned off. |
| /language/lang_english/email/ | topic_notify.tpl | This template contains the text used in the email sent to a user that is watching a topic when the first new reply is sent. |
| /language/lang_english/email/ | user_activate.tpl | This template contains the text used in an email when a user is required to re-activate an account. If a user changes their email address then this email may be sent. |
| /language/lang_english/email/ | user_activate_passwd.tpl | This template contains the text used in an email when a user has requested a new password. |
| /language/lang_english/email/ | user_welcome.tpl | This template contains the text used in an email that welcomes a new user to the board. This template is used when no activation (ADMIN or USER) is required. |
| /language/lang_english/email/ | user_welcome_inactive.tpl | This template contains the body of the email sent out to a user after they have registered when USER ACTIVATION is required. See also admin_welcome_inactive.tpl for the text sent out when ADMIN ACTIVATION is required. |
| /templates/subSilver/ | agreement.tpl | This template is used to display the COPPA agreement during the registration process. Called from usercp_register.php. |
| /templates/subSilver/ | bbcode.tpl | This is not a normal template, as used in the rest of phpBB. This template contains the mappings from BBCode to HTML, and is referenced in includes/bbcode.php only. For example, if you wanted all images processed via BBCode to include a border (or some other attribute) then you could edit this file. If you wanted all URL references to open in the same window instead of a new (_blank) window this is the file. There is a MOD from the phpBBDoctor that allows you to customize links so that links on the same server will open in the same window, but external links will still open a new window. Called from includes/bbcode.php. |
| /templates/subSilver/ | confirm_body.tpl | This template is the confirmation box displayed when a user will be required to confirm an action. An example might be deleting a topic or post via the moderator control panel. Called from admin/admin_styles.php, groupcp.php, modcp.php, posting.php, and privmsg.php. |
| /templates/subSilver/ | error_body.tpl | This template is the error message box displayed when an error has occurred. An example is the message that a user sees when they leave the subject blank on a new topic. Called from admin/admin_mass_email.php, admin/admin_users.php, includes/usercp_email.php, includes/usercp_register.php, posting.php and privmsg.php |
| /templates/subSilver/ | faq_body.tpl | This is the generic template used to display FAQ entries. Called from faq.php. |
| /templates/subSilver/ | formIE.css | This style sheet contains additional items specifically for Microsoft Internet Explorer. It appears in the subSilver theme but may not appear in all available themes for phpBB. |
| /templates/subSilver/ | groupcp_info_body.tpl | This template is used to list groups from the group control panel. Called from groupcp.php. |
| /templates/subSilver/ | groupcp_pending_info.tpl | This template is used by group moderators. It will show a list of all pending members and allow them to bulk approve / deny membership. Called from groupcp.php |
| /templates/subSilver/ | groupcp_user_body.tpl | This is the user (rather than the moderator) view of group information. The user's current group memberships will be displayed, non-member groups will also be listed. Called from groupcp.php. |
| /templates/subSilver/ | index.htm | This file may or may not exist in this location. It's designed to keep casual browsers from getting a directory listing of the files in this folder. |
| /templates/subSilver/ | index_body.tpl | This template is used to display the board index, including cateogry and forum information. If you have something that you want to display on your board index and nowhere else, this is the file. If you have something that you want to see at the top (or bottom) of every page on your board look at overall_header.tpl and overall_footer.tpl instead. Called from index.php. |
| /templates/subSilver/ | jumpbox.tpl | The forum "jumpbox" appears on many different pages in phpBB. This template is used to provide the layout for that feature. The template is referenced only in includes/functions.php, specifically the function make_jumpbox(). But that function is called from many different files in the phpBB system. |
| /templates/subSilver/ | login_body.tpl | This template contains the layout information for the login screen. Note that this is for the dedicated login screen, not the (optional) login box that often appears on the bottom (or top) of the index page. Called from login.php as you might expect. |
| /templates/subSilver/ | memberlist_body.tpl | This is the template that contains the layout for the member list. If you want to add anything to the member listing (like ranks, avatars, or other profile information) then you would need to edit the calling program memberlist.php as well as this template. |
| /templates/subSilver/ | message_body.tpl | This template is similar to error_body.tpl but is used for general messages instead. This template includes redirect code that will send you on to another screen after reading your message. An example would be the message that confirms your new post has been entered, then after a slight delay, forwards you on to review your post within the topic. Called from includes/functions.php, specifically from the function message_die() which is used in nearly every php file used in the phpBB system. Note that there are two "message body" template files, one is dedicated for ADMIN use only. |
| /templates/subSilver/ | modcp_body.tpl | This is the template that is first used by the moderator control panel (modcp.php) to display a list of topics. Called from modcp.php. |
| /templates/subSilver/ | modcp_move.tpl | This template contains the layout code for the moderator Move operation. It includes the destination forum selector as well as a checkbox option for shadow topics. Called from modcp.php. |
| /templates/subSilver/ | modcp_split.tpl | This template contains the layout code for the moderator Split operation. It includes the destination forum selector as well as an interface that allows the moderator to select which post(s) from the topic to split. Called from modcp.php. |
| /templates/subSilver/ | modcp_viewip.tpl | This template contains the layout code for the moderator View IP address option. It allows a moderator to view the IP address for a post, see other users that have posted from the same IP address, look up the IP address, and other IP-related functions. Called from modcp.php. The modcp.php code is itself called from viewforum.php and viewtopic.php. |
| /templates/subSilver/ | overall_footer.tpl | There are two footer layout files: overall_footer and simple_footer. The overall_footer.tpl is the layout used for most of the pages generated by phpBB. Popup boxes (like the PM notify or the smilies selector) use the simple header and footer. If you want something to appear at the bottom of every primary page of your forum then you would edit this file. This template is called from includes/page_tail.php |
| /templates/subSilver/ | overall_header.tpl | There are two header layout files: overall_header and simple_header. The overall_header.tpl is the layout used for most of the pages generated by phpBB. Popup boxes (like the PM notify or the smilies selector) use the simple header and footer. If you want something to appear at the top of every primary page of your forum then you would edit this file. This template is called from includes/page_header.php |
| /templates/subSilver/ | posting_body.tpl | No description provided |
| /templates/subSilver/ | posting_poll_body.tpl | No description provided |
| /templates/subSilver/ | posting_preview.tpl | No description provided |
| /templates/subSilver/ | posting_smilies.tpl | No description provided |
| /templates/subSilver/ | posting_topic_review.tpl | This template is used as a "layer" by the posting process. If the user has requested a post "preview" then topic_review.php is called, which loads this template. Called from topic_review.php. |
| /templates/subSilver/ | privmsgs_body.tpl | No description provided |
| /templates/subSilver/ | privmsgs_popup.tpl | No description provided |
| /templates/subSilver/ | privmsgs_preview.tpl | No description provided |
| /templates/subSilver/ | privmsgs_read_body.tpl | No description provided |
| /templates/subSilver/ | profile_add_body.tpl | This template is used when a new user registers, or when an existing user edits their profile. There is an important switch included in the file that determines which fields are editable during each phase of the operation. For example, during registration you enter a password. During edits you can change your password. |
| /templates/subSilver/ | profile_avatar_gallery.tpl | No description provided |
| /templates/subSilver/ | profile_send_email.tpl | No description provided |
| /templates/subSilver/ | profile_send_pass.tpl | No description provided |
| /templates/subSilver/ | profile_view_body.tpl | This is the template that is used when someone clicks the profile button. This is not related to registration or editing a profile, only viewing. |
| /templates/subSilver/ | search_body.tpl | This is the template that contains the layout code for the search input form. If you want to alter the options available to your users for searching, you would probably modify search.php and this file. Called from search.php. |
| /templates/subSilver/ | search_results_posts.tpl | The search routine offers several output formats. When searching the forum content (as opposed to searching for users) the user can opt to see the results as POSTS or TOPICS. This template is used to display the results in POST form. Called from search.php. |
| /templates/subSilver/ | search_results_topics.tpl | The search routine offers several output formats. When searching the forum content (as opposed to searching for users) the user can opt to see the results as POSTS or TOPICS. This template is used to display the results in TOPIC or "summary" form. Called from search.php. |
| /templates/subSilver/ | search_username.tpl | The search routine offers several output formats. When searching the forum for a specific user (as opposed to searching for post or topic content) this template is used to display the results. Betcha didn't know that the search routine was used to search for users as well as topic / post content, did you. :-) Called from includes/functions_search.php. |
| /templates/subSilver/ | simple_footer.tpl | There are two footer layout files: overall_footer and simple_footer. The overall_footer.tpl is the layout used for most of the pages generated by phpBB. Popup boxes (like the PM notify or the smilies selector) use the simple header and footer. The variable $gen_simple_header is used to trigger the switch from the overall footer to this simple version. This template is called from includes/page_tail.php |
| /templates/subSilver/ | simple_header.tpl | There are two header layout files: overall_header and simple_header. The overall_footer.tpl is the layout used for most of the pages generated by phpBB. Popup boxes (like the PM notify or the smilies selector) use the simple header and footer. The variable $gen_simple_header is used to trigger the switch from the overall header to this simple version. This template is called from includes/page_header.php |
| /templates/subSilver/ | subSilver.cfg | This file is a bit interesting in that it's not really template or layout code, but it is related to a specific "theme" and so appears in the theme folder. It's essentially a series of array assignments that determine where the various images called by phpBB's code are located. It is called from the setup_style() function which is located in the includes/functions.php program file. |
| /templates/subSilver/ | subSilver.css | External style sheet for the subSilver theme. It should be noted that by default this file is not used. You have to edit templates/subSilver/overall_header.tpl and remove the style elements from the template, and establish a link to the external style sheet. |
| /templates/subSilver/ | theme_info.cfg | This file is similar to the subSilver.cfg except that it contains color and style settings as entered in the Admin Control Panel. No edits are generally applied directly to this file, as you would use the ACP instead. |
| /templates/subSilver/ | viewforum_body.tpl | This template contains the structure for the topic listing for a selected forum. Called from viewforum.php. |
| /templates/subSilver/ | viewonline_body.tpl | This template is used to display the online user list when the "Who's Online" link from the index page is accessed. Called from viewonline.php. |
| /templates/subSilver/ | viewtopic_body.tpl | The viewtopic templates use a "layered" approach. This specific template file is used to display the post data for the selected topic. For other layers see the viewtopic_poll_ballot and viewtopic_poll_results template files. The popular attachment MOD also adds a template layer called from viewtopic.php, but is not documented here as it is not part of the official 2.x distribution. Called from viewtopic.php. |
| /templates/subSilver/ | viewtopic_poll_ballot.tpl | The viewtopic templates use a "layered" approach. This specific template file is used to display poll voting options to members that have not yet voted. Called from viewtopic.php. |
| /templates/subSilver/ | viewtopic_poll_result.tpl | The viewtopic templates use a "layered" approach. This specific template file is used to display poll results to members that have voted, members that have not voted but have requested to see poll results, and to guests (who can't vote in a default phpBB configuration). Called from viewtopic.php. |
| /templates/subSilver/admin/ | admin_message_body.tpl | Admin template |
| /templates/subSilver/admin/ | auth_forum_body.tpl | When the forum permissions code is called with a forum ID then the "edit" form is loaded via this template. If not, then the auth_select_body.tpl template is loaded instead. This template provides an interface that allows the board admin to set forum permissions via a series of select boxes. The template can be displayed in "simple" or "advanced" mode. Simple mode means there is only one select box with values like Public, Registered, and so on. Advanced mode means the board administrator can set specific permissions for View, Read, Post, Edit, and so on. Called from admin/admin_forumauth.php |
| /templates/subSilver/admin/ | auth_select_body.tpl | When the forum permissions code is called with a forum ID then the "edit" form is loaded via auth_forum_body.tpl. If not, then the auth_select_body.tpl template is loaded instead. This template provides a list of forums and allows the admin to select one. That selected forum is then passed back to the same page as a parameter, which causes the auth_forum_body.tpl template file to be loaded instead. Called from admin/admin_forumauth.php |
| /templates/subSilver/admin/ | auth_ug_body.tpl | Admin template |
| /templates/subSilver/admin/ | board_config_body.tpl | The table is used to edit the values stored in the phpbb_config table. While the template provides different types of options (radio, text field, drop-down selectors) all of the values are stored as name -> value pairs. You may only edit, there is no feature to insert new values via this form. Called from admin/admin_board.php |
| /templates/subSilver/admin/ | category_edit_body.tpl | Both forums and categories are displayed on the same page, using forum_admin_body.tpl. However, since forums and categories have different table structures, a different edit form is required for each. This template provides the form for creating / editing a board category. Called from admin/admin_forums.php |
| /templates/subSilver/admin/ | db_utils_backup_body.tpl | This template contains the form that you fill out when you back up your board using the admin control panel. Called from admin/admin_db_utils.php |
| /templates/subSilver/admin/ | db_utils_restore_body.tpl | This template contains the form filled out when using the database restore function from the admin control panel. Called from admin/admin_db_utils.php |
| /templates/subSilver/admin/ | disallow_body.tpl | Admin template |
| /templates/subSilver/admin/ | forum_admin_body.tpl | Both forums and categories are displayed on the same page, using forum_admin_body.tpl. This template provides links to edit existing catgories or forums, to insert new categories or forums, to rearrange the forum or category order, and to resync post counts. Editing or inserting new forums or categories is done via forum_edit_body.tpl or category_edit_body.tpl instead. Called from admin/admin_forums.php |
| /templates/subSilver/admin/ | forum_delete_body.tpl | Admin template |
| /templates/subSilver/admin/ | forum_edit_body.tpl | Both forums and categories are displayed on the same page, using forum_admin_body.tpl. However, since forums and categories have different table structures, a different edit form is required for each. This template provides the form for creating / editing a forum, including attributes like forum name, description, and various permissions. Called from admin/admin_forums.php |
| /templates/subSilver/admin/ | forum_prune_body.tpl | Admin template |
| /templates/subSilver/admin/ | forum_prune_result_body.tpl | Admin template |
| /templates/subSilver/admin/ | forum_prune_select_body.tpl | Admin template |
| /templates/subSilver/admin/ | group_edit_body.tpl | Admin template |
| /templates/subSilver/admin/ | group_select_body.tpl | Admin template |
| /templates/subSilver/admin/ | index_body.tpl | Admin template |
| /templates/subSilver/admin/ | index_frameset.tpl | Admin template |
| /templates/subSilver/admin/ | index_navigate.tpl | Admin template |
| /templates/subSilver/admin/ | page_footer.tpl | This template is the rough equivalent to overall_footer.tpl but is used for admin pages only. It doesn't do much, just sets up and displays standard footer information. Called from admin/page_footer_admin.php |
| /templates/subSilver/admin/ | page_header.tpl | This template is the rough equivalent of overall_header.tpl but for admin pages only. The admin header is much simpler than overall_header, but it does load the style sheet and set some basic formats. If you want to use a different style sheet for your admin pages (it often looks better, especially if you have configured background images) then this is the file to edit. Called from admin/page_header_admin.php |
| /templates/subSilver/admin/ | ranks_edit_body.tpl | This is the template file used to list ranks. When you first select the "ranks" option you are viewing the contents of your phpbb_ranks table through the ranks_list_body.tpl template. When you select a rank to edit, you invoke this template (ranks_edit_body.tpl) and the edit form is displayed. Called from admin/admin_ranks.php |
| /templates/subSilver/admin/ | ranks_list_body.tpl | This is the template file used to list ranks. When you first select the "ranks" option you are viewing the contents of your phpbb_ranks table through this template. There are links that will allow you to edit or delete ranks, editing is done via the ranks_edit_body.tpl template instead. Called from admin/admin_ranks.php |
| /templates/subSilver/admin/ | smile_edit_body.tpl | There are three functions related to smile management in phpBB: list, edit, and import. This template is used to display the edit form for an individual smile. Called from admin/admin_smilies.php |
| /templates/subSilver/admin/ | smile_import_body.tpl | There are three functions related to smile management in phpBB: list, edit, and import. This template is used during the importing of a smile pack. Called from admin/admin_smilies.php |
| /templates/subSilver/admin/ | smile_list_body.tpl | There are three functions related to smile management in phpBB: list, edit, and import. This template is used for the listing display. Each smile is presented along with a link to edit or remove. Called from admin/admin_smilies.php |
| /templates/subSilver/admin/ | styles_addnew_body.tpl | Admin template |
| /templates/subSilver/admin/ | styles_edit_body.tpl | Admin template |
| /templates/subSilver/admin/ | styles_exporter.tpl | Admin template |
| /templates/subSilver/admin/ | styles_list_body.tpl | Admin template |
| /templates/subSilver/admin/ | user_avatar_gallery.tpl | Admin template |
| /templates/subSilver/admin/ | user_ban_body.tpl | Admin template |
| /templates/subSilver/admin/ | user_edit_body.tpl | Admin template |
| /templates/subSilver/admin/ | user_email_body.tpl | Admin template |
| /templates/subSilver/admin/ | user_select_body.tpl | Admin template |
| /templates/subSilver/admin/ | words_edit_body.tpl | phpBB offers the ability so defined *censored* words. This template provides the form used to edit an existing word or insert a new one. Called from admin/admin_words.php |
| /templates/subSilver/admin/ | words_list_body.tpl | phpBB offers the ability so defined *censored* words. This template is used to list words from the phpbb_words table and offers the ability to edit, insert, or delete a word from the table. Called from admin/admin_words.php |
|
Not endorsed by or affiliated with the phpBB Group Powered by phpBB © phpBB Group |
Terms of Service Web design by MomentsOfLight.com |