-
1 Attachment(s)
UberCMS New Header
Hi there,
Today is the day i release the new customize header for UBERCMS.I have used it in BlackCMS witch will be release soon after working with some errors.
Below are some images of it working.
Attachment 107592
Below are the codes
/inc/tpl/generic-top.tpl
PHP Code:
<body id="%body_id%" class="<?php if (!LOGGED_IN) { echo 'anonymous'; } ?> ">
<link rel="stylesheet" href="%www%/css/top.css" type="text/css" />
<div id="top">
<p class="alignleft"><b>Welcome Back %habboName% | <img src="/images/test/new_04.png"/> %creditsBalance% Credits | <img src="/images/test/cat_1.png"/> %pixelsBalance%
<p class="alignright"> Logged in as <b>%habboName%</b> | <a href="/client" target="uberClientWnd" onclick="HabboClient.openOrFocus(this); return false;"><b>Enter Hotel</b><i></i></a> | <a href="/logout">Log out</a></p>
<div style="clear: both;"></div></div>
<div id="overlay"></div>
<div id="header-container">
<div id="header" class="clearfix">
<h1><a href="%www%"></a></h1>
<div id="subnavi" class=wide>
<div id="subnavi-search">
<div id="subnavi-search-upper">
<ul id="subnavi-search-links">
<li>
<em>We are going to delete this soon</em>
</li>
</ul>
</div>
</div>
<div id="to-hotel">
<?php if ($users->HasFuse(USER_ID, 'fuse_housekeeping_login')) { ?>
<a href="%www%/denied_hk.php" class="new-button red-button" style="margin-top: -60px;"><b>Housekeeping</b><i></i></a>
<?php ?>
</div>
</div>
<script type="text/javascript">
L10N.put("purchase.group.title", "Create a group");
document.observe("dom:loaded", function() {
$("signout").observe("click", function() {
HabboClient.close();
});
});
</script>
<?php } else { ?>
<div id="subnavi-login">
<form action="%www%/account/submit" method="post" id="login-form">
<input type="hidden" name="page" value="%www%<?php echo $_SERVER['PHP_SELF']; ?>" />
<ul>
<li>
<label for="login-username" class="login-text"><b>Username</b></label>
<input tabindex="1" type="text" class="login-field" name="credentials.username" id="login-username" />
<a href="#" id="login-submit-new-button" class="new-button" style="float: left; display:none"><b>Sign in</b><i></i></a>
<input type="submit" id="login-submit-button" value="Sign in" class="submit"/>
</li>
<li>
<label for="login-password" class="login-text"><b>Password</b></label>
<input tabindex="2" type="password" class="login-field" name="credentials.password" id="login-password" />
<input tabindex="3" type="checkbox" name="_login_remember_me" value="true" id="login-remember-me" />
<label for="login-remember-me" class="left">Remember me</label>
</li>
</ul>
</form>
<div id="subnavi-login-help" class="clearfix">
<ul>
<li class="register"><a href="%www%/account/password/forgot" id="forgot-password"><span>Forgot password/username?</span></a></li>
<li><a href="%www%/register"><span>Register for free</span></a></li>
</ul>
</div>
<div id="remember-me-notification" class="bottom-bubble" style="display:none;">
<div class="bottom-bubble-t"><div></div></div>
<div class="bottom-bubble-c">
By selecting 'remember me' you will stay signed in on this computer until you click 'Sign Out'. If this is a public computer please do not use this feature.
</div>
<div class="bottom-bubble-b"><div></div></div>
</div>
</div>
</div>
<script type="text/javascript">
LoginFormUI.init();
RememberMeUI.init("right");
</script>
<?php } ?>
<ul id="navi">
<?php
$data = dbquery("SELECT id,caption,class,url,visibility FROM site_navi WHERE parent_id = '0' ORDER BY order_id ASC");
while ($link = mysql_fetch_assoc($data))
{
$allowDisplay = true;
switch ($link['visibility'])
{
default:
case 0:
$allowDisplay = false;
break;
case 1:
break;
case 2:
if (!LOGGED_IN)
{
$allowDisplay = false;
}
break;
case 3:
if (LOGGED_IN)
{
$allowDisplay = false;
}
break;
}
if (!$allowDisplay)
{
continue;
}
$class = clean($link['class']);
$showLink = true;
if (defined('TAB_ID') && TAB_ID == $link['id'])
{
$class .= ' selected';
$showLink = false;
}
echo ' <li ' . (($class == "tab-register-now") ? 'id="tab-register-now"' : '') . ' class="' . $class . '">';
if ($showLink)
{
echo '<a href="' . clean($link['url']) . '">';
}
else
{
echo '<strong>';
}
echo clean($link['caption']);
if ($showLink)
{
echo '</a>';
}
else
{
echo '</strong>';
}
echo ' <span></span>
</li>' . LB;
}
?>
</ul>
<div id="habbos-online"><div class="rounded"><span>%hotel_status%</span></div></div>
</div>
</div>
<div id="content-container">
<?php if (LOGGED_IN || defined('TAB_ID')) { ?>
<div id="navi2-container" class="pngbg">
<div id="navi2" class="pngbg clearfix">
<ul>
<?php
$i = 0;
$lookupParent = '1';
if (defined('TAB_ID'))
{
$lookupParent = TAB_ID;
}
$getSub = dbquery("SELECT id,caption,url,visibility FROM site_navi WHERE parent_id = '" . $lookupParent . "' ORDER BY order_id ASC");
while ($subLink = mysql_fetch_assoc($getSub))
{
$allowDisplay = true;
switch ($subLink['visibility'])
{
default:
case 0:
$allowDisplay = false;
break;
case 1:
break;
case 2:
if (!LOGGED_IN)
{
$allowDisplay = false;
}
break;
case 3:
if (LOGGED_IN)
{
$allowDisplay = false;
}
break;
}
$i++;
if (!$allowDisplay)
{
continue;
}
$class = '';
$showLink = true;
if (defined('PAGE_ID') && PAGE_ID == $subLink['id'])
{
$class .= ' selected';
$showLink = false;
}
if ($i == mysql_num_rows($getSub))
{
$class .= ' last';
}
echo '<li class="' . $class . '">';
if ($showLink) echo '<a href="' . clean($subLink['url']) . '">';
echo clean($subLink['caption']);
if ($showLink) echo '</a>';
echo '</li>';
}
?>
</ul>
</div>
</div>
<?php } ?>
<div id="container">
<div id="content" style="position: relative" class="clearfix">
/css/top.css
PHP Code:
#top
{
padding-top: 9px;
padding-bottom: 0px;
padding-left: 15px;
padding-right: 17px;
color: #FFF;
background-image: url('/images/test/i_bar.png') !important;
}
@-moz-document url-prefix()
{
#top
{
padding-top: 7px;
}
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
.enter-btn a, .enter-btn span {
background: transparent url(/images/test/personal_info/enter_button.png) no-repeat -9px 0;
}
.enter-btn a i {
background: transparent url(/images/test/personal_info/flashy_arrow.gif) no-repeat 0 50%;
}
.enter-btn b {
background: transparent url(/images/test/personal_info/enter_button.png) no-repeat 0 0;n
}
.promo-container a
{
color:#fff
}
#promo-box .promo-content .title a
{
text-decoration:none
}
#promo-box .promo-content .title a:hover
{
text-decoration:underline
}
Images Download
Click Here To Download
Thank You......
-
Re: UberCMS New Header
This is easy enough to do, so if someone doesn't know how to do this and wants to add it, I'm not sure if they'll know where to put the images. Idk the web gallery url, so it'd be useful to include a how to on how to add those images and the header itself.
Looks good, thanks for the contribution bud
-
Re: UberCMS New Header
Looks kinda ugly honestly to me, but some people could like it. thanks for releasing it to RZ.
-
Re: UberCMS New Header
I liek da fact dat shu renamund uber cms...
-
Re: UberCMS New Header
-
Re: UberCMS New Header
Just add the files to their directory like the images in /images and the .tpl files in /inc/tpl and the css code in /css/ ( you must create the directory)
-
1 Attachment(s)
Re: UberCMS New Header
I have this error bro.
Attachment 107687
-
Re: UberCMS New Header
add this to your class.tpl.php
$this->SetParam('creditsBalance', $users->GetUserVar(USER_ID, 'credits'));
$this->SetParam('pixelsBalance', $users->GetUserVar(USER_ID, 'activity_points'));