├── avatars
└── .htaccess
├── templates
├── login
│ ├── login_error.html
│ ├── login_errors.html
│ └── login_form.html
├── message.html
├── generic
│ └── page_message.html
├── thread
│ ├── label.html
│ ├── thread_label.html
│ ├── thread_title.html
│ ├── modtools_button.html
│ ├── thread.html
│ ├── thread_display_blank.html
│ ├── thread_title_edit.html
│ ├── modtools.html
│ ├── thread_display.html
│ └── reply_box.html
├── header
│ ├── menu_page.html
│ ├── nav_seperator.html
│ ├── nav_button.html
│ ├── nav_disabled.html
│ ├── title.html
│ ├── nav_last.html
│ ├── title_img.html
│ └── header.html
├── pagination
│ ├── page_button.html
│ ├── page_button_disabled.html
│ └── pagination.html
├── panel
│ ├── panel_button.html
│ └── panel_navigation.html
├── post
│ ├── post_quote.html
│ ├── post_restore.html
│ ├── post_buttons.html
│ ├── post_display_hidden.html
│ ├── post_display.html
│ └── post_edit.html
├── fatal.html
├── userlist
│ ├── user_button.html
│ ├── userlist.html
│ ├── sort_options.html
│ └── user_display.html
├── userpanel
│ └── profilesettings.html
├── search
│ ├── search_table.html
│ └── search_page.html
├── category
│ ├── category_page.html
│ └── category_display.html
├── footer.html
└── homepage
│ └── homepage.html
├── lang
├── FA_IR.json
├── EN_US.json
└── RU_RU.json
├── CREDITS.md
├── install
├── install.ico
├── logo.svg
├── install.css
├── install.svg
└── install.php
├── themes
├── Aurora
│ ├── icon.ico
│ └── icon.png
├── Midnight
│ ├── icon.ico
│ ├── icon.png
│ └── style.css
└── Skyline
│ ├── icon.ico
│ └── icon.png
├── config
├── extensions-default.php
└── config-setup.php
├── assets
├── panel.js
├── search.js
├── bbcode.js
└── thread.js
├── .htaccess
├── extensions
├── Symbolism
│ ├── manifest.json
│ └── extension.php
└── Stats
│ ├── manifest.json
│ ├── style.css
│ └── extension.php
├── pages
├── footer.php
├── post.page.php
├── thread.ajax.php
├── userpanel.page.php
├── panel.page.php
├── userpanelprofilesettings.page.php
├── paneluseradmin.page.php
├── homepage.page.php
├── header.php
├── userpanelaccountsettings.page.php
├── category.page.php
├── panelextensions.page.php
├── userpanelavatarsettings.page.php
├── login.page.php
├── userlist.page.php
├── newthread.page.php
├── panelauditlog.page.php
├── panelsettings.page.php
├── user.page.php
├── signup.page.php
├── search.page.php
└── panelcategory.page.php
├── libs
├── extensions.php
├── ajax.php
├── templates.php
├── language.php
├── permission.php
└── formatter.php
├── README.md
├── index.php
└── upgrade
└── upgrade.page.php
/avatars/.htaccess:
--------------------------------------------------------------------------------
1 | php_flag engine off
2 |
--------------------------------------------------------------------------------
/templates/login/login_error.html:
--------------------------------------------------------------------------------
1 |
[[ error ]]
2 |
--------------------------------------------------------------------------------
/templates/message.html:
--------------------------------------------------------------------------------
1 | [[ content ]]
2 |
--------------------------------------------------------------------------------
/lang/FA_IR.json:
--------------------------------------------------------------------------------
1 | {"name": "فارسی", "region": "Iran", "region_abbr": "IR"}
2 |
--------------------------------------------------------------------------------
/templates/generic/page_message.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 | [[ message ]]
3 |
--------------------------------------------------------------------------------
/templates/thread/label.html:
--------------------------------------------------------------------------------
1 | [[ text ]]
2 |
--------------------------------------------------------------------------------
/templates/thread/thread_label.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/templates/thread/thread_title.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 |
--------------------------------------------------------------------------------
/CREDITS.md:
--------------------------------------------------------------------------------
1 | tormater-yak
2 | GigaHacer
3 | vegbao
4 | cosmopolityan
5 | abdulhalim
6 |
--------------------------------------------------------------------------------
/lang/EN_US.json:
--------------------------------------------------------------------------------
1 | {"name": "English", "region": "United States", "region_abbr": "US"}
2 |
--------------------------------------------------------------------------------
/templates/header/menu_page.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/templates/header/nav_seperator.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/lang/RU_RU.json:
--------------------------------------------------------------------------------
1 | {"name": "Русский", "region": "Russian Federation", "region_abbr": "RU"}
2 |
--------------------------------------------------------------------------------
/templates/header/nav_button.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/templates/header/nav_disabled.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/install/install.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/install/install.ico
--------------------------------------------------------------------------------
/templates/header/title.html:
--------------------------------------------------------------------------------
1 | [[ $forumName ]]
2 |
--------------------------------------------------------------------------------
/templates/pagination/page_button.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/templates/panel/panel_button.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 |
--------------------------------------------------------------------------------
/templates/panel/panel_navigation.html:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/templates/header/nav_last.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/templates/pagination/page_button_disabled.html:
--------------------------------------------------------------------------------
1 | [[ label ]]
2 |
--------------------------------------------------------------------------------
/themes/Aurora/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/themes/Aurora/icon.ico
--------------------------------------------------------------------------------
/themes/Aurora/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/themes/Aurora/icon.png
--------------------------------------------------------------------------------
/themes/Midnight/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/themes/Midnight/icon.ico
--------------------------------------------------------------------------------
/themes/Midnight/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/themes/Midnight/icon.png
--------------------------------------------------------------------------------
/themes/Skyline/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/themes/Skyline/icon.ico
--------------------------------------------------------------------------------
/themes/Skyline/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tormater/tormater-forum/HEAD/themes/Skyline/icon.png
--------------------------------------------------------------------------------
/config/extensions-default.php:
--------------------------------------------------------------------------------
1 | false,
4 | );
5 | ?>
6 |
--------------------------------------------------------------------------------
/templates/post/post_quote.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/templates/fatal.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 | [[ message ]]
3 |
4 | [[ back ]]
5 |
--------------------------------------------------------------------------------
/templates/header/title_img.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/templates/userlist/user_button.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/templates/thread/modtools_button.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/assets/panel.js:
--------------------------------------------------------------------------------
1 | function checkColorRadio() {
2 | document.getElementById('newcolor').checked = true;
3 | document.getElementById('resetcolor').checked = false;
4 | }
5 |
--------------------------------------------------------------------------------
/templates/post/post_restore.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/templates/userlist/userlist.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 | [[ sort_options ]]
3 | [[ pagination ]]
4 |
5 | [[ users ]]
6 |
7 |
8 | [[ pagination ]]
9 |
--------------------------------------------------------------------------------
/templates/userpanel/profilesettings.html:
--------------------------------------------------------------------------------
1 | [[ header ]]
2 |
3 |
6 | [[ bio_form ]]
7 |
--------------------------------------------------------------------------------
/templates/login/login_errors.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 | [[ badfields ]]
3 |
6 |
7 | [[ go_back ]]
8 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | php_value display_errors Off
2 |
3 | RewriteEngine On
4 | RewriteCond %{REQUEST_FILENAME} !-f
5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
6 |
7 |
--------------------------------------------------------------------------------
/templates/search/search_table.html:
--------------------------------------------------------------------------------
1 | [[ pagination ]]
2 | | [[ th_thread ]] | [[ th_posts ]] | [[ th_lastpost ]] |
3 | [[ threads ]]
4 |
5 | [[ pagination ]]
6 |
--------------------------------------------------------------------------------
/extensions/Symbolism/manifest.json:
--------------------------------------------------------------------------------
1 | {"title": "Symbolism", "author": "[url=https://github.com/tormater]Tormater Organization[/url]", "readme": "Tormater Forum extension that adds FontAwesome icons to some elements."}
2 |
--------------------------------------------------------------------------------
/extensions/Stats/manifest.json:
--------------------------------------------------------------------------------
1 | {"title": "Statistics", "author": "[url=https://github.com/tormater]Tormater Organization[/url]", "readme": "Tormater Forum extension that adds board statistics to the bottom of the page."}
2 |
--------------------------------------------------------------------------------
/templates/thread/thread.html:
--------------------------------------------------------------------------------
1 | [[ error ]]
2 | [[ title ]]
3 | [[ info ]]
4 | [[ modtools ]]
5 | [[ labels ]]
6 | [[ pagination ]]
7 | [[ posts ]]
8 | [[ pagination ]]
9 | [[ reply ]]
10 |
--------------------------------------------------------------------------------
/templates/thread/thread_display_blank.html:
--------------------------------------------------------------------------------
1 |
2 | |
3 | [[ title ]]
4 | |
5 |
6 | |
7 |
8 | |
9 |
10 |
--------------------------------------------------------------------------------
/templates/thread/thread_title_edit.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/templates/pagination/pagination.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/extensions/Stats/style.css:
--------------------------------------------------------------------------------
1 | .statsLeft {
2 | min-width: 50%;
3 | max-width: 50%;
4 | float: left
5 | }
6 | .statsRight {
7 | min-width: 50%;
8 | max-width: 50%;
9 | float: right;
10 | text-align: right;
11 | }
12 |
--------------------------------------------------------------------------------
/templates/thread/modtools.html:
--------------------------------------------------------------------------------
1 |
2 |
5 | [[ buttons ]]
6 |
7 |
--------------------------------------------------------------------------------
/templates/category/category_page.html:
--------------------------------------------------------------------------------
1 | [[ title ]]
2 | [[ desc ]]
3 | [[ pagination ]]
4 | | [[ th_thread ]] | [[ th_posts ]] | [[ th_lastpost ]] |
5 | [[ threads ]]
6 |
7 | [[ pagination ]]
8 |
--------------------------------------------------------------------------------
/templates/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |