Verzeichnisstruktur phpBB-2.0.0
- Veröffentlicht
- 03.04.2002
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
subSilver.cfg
001 <?php
002 //
003 // ** Configuration file for subSilver template **
004 //
005 // ** copyright (C) 2001 The phpBB Group **
006 // ** Created by subBlue design **
007 // ** www.subBlue.com **
008 //
009 // ** subSilver dev. forum: www.subSky.com/phpBB2/ **
010 //
011 // $Id$
012 //
013 // Please note that to enable support of different languages
014 // the {LANG} place holder is available. This will be replaced
015 // with xxx where xxx is the users selected language. If
016 // that language isn't available it will default to english.
017 // Therefore you MUST ensure you have at least a english
018 // directory if you choose to localise your template
019 //
020
021 //
022 // Do not alter this line!
023 //
024 define(TEMPLATE_CONFIG, TRUE);
025
026 $current_template_images = $current_template_path . "/images";
027
028 $images['icon_quote'] = "$current_template_images/{LANG}/icon_quote.gif";
029 $images['icon_edit'] = "$current_template_images/{LANG}/icon_edit.gif";
030 $images['icon_search'] = "$current_template_images/{LANG}/icon_search.gif";
031 $images['icon_profile'] = "$current_template_images/{LANG}/icon_profile.gif";
032 $images['icon_pm'] = "$current_template_images/{LANG}/icon_pm.gif";
033 $images['icon_email'] = "$current_template_images/{LANG}/icon_email.gif";
034 $images['icon_delpost'] = "$current_template_images/icon_delete.gif";
035 $images['icon_ip'] = "$current_template_images/{LANG}/icon_ip.gif";
036 $images['icon_www'] = "$current_template_images/{LANG}/icon_www.gif";
037 $images['icon_icq'] = "$current_template_images/{LANG}/icon_icq_add.gif";
038 $images['icon_aim'] = "$current_template_images/{LANG}/icon_aim.gif";
039 $images['icon_yim'] = "$current_template_images/{LANG}/icon_yim.gif";
040 $images['icon_msnm'] = "$current_template_images/{LANG}/icon_msnm.gif";
041 $images['icon_minipost'] = "$current_template_images/icon_minipost.gif";
042 $images['icon_gotopost'] = "$current_template_images/icon_minipost.gif";
043 $images['icon_minipost_new'] = "$current_template_images/icon_minipost_new.gif";
044 $images['icon_latest_reply'] = "$current_template_images/icon_latest_reply.gif";
045 $images['icon_newest_reply'] = "$current_template_images/icon_newest_reply.gif";
046
047 $images['forum'] = "$current_template_images/folder_big.gif";
048 $images['forum_new'] = "$current_template_images/folder_new_big.gif";
049 $images['forum_locked'] = "$current_template_images/folder_locked_big.gif";
050
051 $images['folder'] = "$current_template_images/folder.gif";
052 $images['folder_new'] = "$current_template_images/folder_new.gif";
053 $images['folder_hot'] = "$current_template_images/folder_hot.gif";
054 $images['folder_hot_new'] = "$current_template_images/folder_new_hot.gif";
055 $images['folder_locked'] = "$current_template_images/folder_lock.gif";
056 $images['folder_locked_new'] = "$current_template_images/folder_lock_new.gif";
057 $images['folder_sticky'] = "$current_template_images/folder_sticky.gif";
058 $images['folder_sticky_new'] = "$current_template_images/folder_sticky_new.gif";
059 $images['folder_announce'] = "$current_template_images/folder_announce.gif";
060 $images['folder_announce_new'] = "$current_template_images/folder_announce_new.gif";
061
062 $images['post_new'] = "$current_template_images/{LANG}/post.gif";
063 $images['post_locked'] = "$current_template_images/{LANG}/reply-locked.gif";
064 $images['reply_new'] = "$current_template_images/{LANG}/reply.gif";
065 $images['reply_locked'] = "$current_template_images/{LANG}/reply-locked.gif";
066
067 $images['pm_inbox'] = "$current_template_images/msg_inbox.gif";
068 $images['pm_outbox'] = "$current_template_images/msg_outbox.gif";
069 $images['pm_savebox'] = "$current_template_images/msg_savebox.gif";
070 $images['pm_sentbox'] = "$current_template_images/msg_sentbox.gif";
071 $images['pm_readmsg'] = "$current_template_images/folder.gif";
072 $images['pm_unreadmsg'] = "$current_template_images/folder_new.gif";
073 $images['pm_replymsg'] = "$current_template_images/{LANG}/reply.gif";
074 $images['pm_postmsg'] = "$current_template_images/{LANG}/msg_newpost.gif";
075 $images['pm_quotemsg'] = "$current_template_images/{LANG}/icon_quote.gif";
076 $images['pm_editmsg'] = "$current_template_images/{LANG}/icon_edit.gif";
077 $images['pm_new_msg'] = "";
078 $images['pm_no_new_msg'] = "";
079
080 $images['Topic_watch'] = "";
081 $images['topic_un_watch'] = "";
082 $images['topic_mod_lock'] = "$current_template_images/topic_lock.gif";
083 $images['topic_mod_unlock'] = "$current_template_images/topic_unlock.gif";
084 $images['topic_mod_split'] = "$current_template_images/topic_split.gif";
085 $images['topic_mod_move'] = "$current_template_images/topic_move.gif";
086 $images['topic_mod_delete'] = "$current_template_images/topic_delete.gif";
087
088 $images['voting_graphic'][0] = "$current_template_images/voting_bar.gif";
089 $images['voting_graphic'][1] = "$current_template_images/voting_bar.gif";
090 $images['voting_graphic'][2] = "$current_template_images/voting_bar.gif";
091 $images['voting_graphic'][3] = "$current_template_images/voting_bar.gif";
092 $images['voting_graphic'][4] = "$current_template_images/voting_bar.gif";
093
094 //
095 // Vote graphic length defines the maximum length of a vote result
096 // graphic, ie. 100% = this length
097 //
098 $board_config['vote_graphic_length'] = 205;
099 $board_config['privmsg_graphic_length'] = 175;
100
101 ?>