Thread: Comming Soon
View Single Post
  #1  
Old 28th November 2014, 16:18
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default Coming Soon
This has been shared here first due to I am lazy and its just a image for now & snippet of code as I am recoding the forums template so it might be easier for others to enjoy as I have been told many times " Why 1 script? " " Can you make it different ".

I don't care what anyone says about this as its free so bitch as much as you like but in the end I programmed it by just reading html and css.

this is my next beta release so always use with care and yes you can convert or change it yourself.

Click the image to open in full size.

Partly Recoded:
Code:
<?php
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'include'.DIRECTORY_SEPARATOR.'bittorrent.php');
require_once(INCL_DIR.'user_functions.php');
require_once(INCL_DIR.'bbcode_functions.php');
require_once(INCL_DIR.'pager_functions.php');
require_once(INCL_DIR.'html_functions.php');
require_once(INCL_DIR.'mood.php');
dbconn();

/** Basic Settings **/
$flood_mod = true;
$poll_mod = true;
$forum_stats_mod = true;
$minutes = 5;
$limit = 10;

define('UC_SCENE_DEVELOPER', 34);
define('DEVELOPER_CLASS', UC_SCENE_DEVELOPER);
$maxfilesize = 40096 * 1024;
ini_set("upload_max_filesize", $maxfilesize);
$attachment_dir = ROOT_DIR . "forum_attachments";
$allowed_file_extensions = array('rar', 'zip');
$postsperpage = (empty($CURUSER['postsperpage']) ? 25 : (int)$CURUSER['postsperpage']);

if (function_exists('parked')) {
  
     parked();
}

if ($TBDEV['forums_online'] == 0 AND $CURUSER['class'] < UC_MODERATOR) {

     stderr('Information', 'The forums are currently offline for maintainance work');
}
     
echo '<link type="text/css" rel="stylesheet" href="/css3/forum.css">';

// BreadCrumb Menu By BamBam0077
echo '<div id="breadmenubar">
                 <div class="breadBoxTop">
                 <nav>
                 <fieldset class="breadcrumb">
                 <div id="movebread">
                 <span class="crumbs">
                 <span class="crust selectedTabCrumb">
                 <a class="crumb"><span itemprop="title">'.$TBDEV['site_name'].'</span></a>
                 <span class="arrow"><span></span></span>
                 </span> 
                 <span class="crust selectedTabCrumb">
                 <a class="crumb"><span itemprop="title">Forums</span></a>
                 <span class="arrow"><span></span></span>
                 </span>                  
                 </span>
                 </fieldset>
                 </div></nav></div></div>';
                                  
echo "<table class='main' border='0' cellspacing='0' cellpadding='0' align='center'>
    <tr align='center'>
        <td class='embedded'><img src='".$TBDEV['pic_base_url']."unlockednew.gif' alt='New Unlocked' style='margin-right: 5px' /></td>
        <td class='embedded'>New posts</td>
        <td class='embedded'><img src='".$TBDEV['pic_base_url']."locked.gif' alt='Locked' style='margin-left: 10px; margin-right: 5px' /></td>
        <td class='embedded'>Locked topic</td>
    </tr>
    </table>";

Last edited by BamBam0077; 28th November 2014 at 16:39. Reason: added snippet of code
Reply With Quote