Project OmegaASE [Multi-CMS] [Multi-Database] [Secure] [Variety Of Features] [Free]

Status
Not open for further replies.

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
Ymb32Muc4dF0.png

=======================================
What is Omega?
Omega is an administration panel for Habbo Retros everywhere. Even though Omega is still under development, a load of features have already been coded in, and even more have been planned to be added in for future versions. Omega will be released in one version. A free version. However, to keep our website up so people can preview Omega before downloading, and what not we rely on donations. How much you donate is up to you, and you will even get a special badge on the Omega Support Website(Coming Soon).
When will Omega be released?
Omega does not have a planned release date but it will probably be sometime in January. Make sure to tell your friends!
Some pictures of Omega in action!
4qyQMlO.png

trirZeg.png

sMJ5eAy.png

Code Snippets
PHP:
<?php[/B][/B]
[B][B]/*
    _      _____          _          _      ____                                  _   
  /\| |/\  |  __ \        (_)        | |    / __ \                              /\| |/\ 
  \ ` ' /  | |__) | __ ___  _  ___  ___| |_  | |  | |_ __ ___  ___  __ _  __ _  \ ` ' / 
|_    _| |  ___/ '__/ _ \| |/ _ \/ __| __| | |  | | '_ ` _ \ / _ \/ _` |/ _` | |_    _|
  / , . \  | |  | | | (_) | |  __/ (__| |_  | |__| | | | | | |  __/ (_| | (_| |  / , . \ 
  \/|_|\/  |_|  |_|  \___/| |\___|\___|\__|  \____/|_| |_| |_|\___|\__, |\__,_|  \/|_|\/ 
                          _/ |                                      __/ |               
  ______ ______ ______ __|__/ ______ ______ ______ ______ ______ ___|___/_____ ______ ______
|______|______|______|______|______|______|______|______|______|______|______|______|______|
Project Started On December 12, 2013 By Chris Pettyjohn
---------------------------------------------------------
Project Omega will bring the retro world of administration to its knees begging for mercy.  Loaded with dozens of ways to moderate, or administer your habbo retro Project Omega is by far the most advanced administration panel ever before seen on the retro world!  With no limits, you can see how far Omega will take you!
===========================================================================================================================================================================
File's Current Version : 2.0
*/

// Check Rank And Redirect Pending On Rank
$rank = $_SESSION['user']['rank']; // Gets the rank of your user
if($rank <= '6')
{
include('storage/reporter/'.$page.'/final.php');
}
else
{
if($rank <= '7')
{
include('storage/moderator/'.$page.'/final.php');
}
if($rank <= '8')
{
include('storage/administrator/'.$page.'/final.php');
}
if($rank <= '9')
{
include('storage/technician/'.$page.'/final.php');
}
}
?>
PHP:
<?php[/B][/B]
[B][B]$page='dash';
include('alpha/header.php');
?>
PHP:
    <link href="{url}/app/tpl/skins/{skin}/hk/alpha/flat/bootstrap/css/bootstrap.css" rel="stylesheet">[/B][/B]
[B][B]    <link href="{url}/app/tpl/skins/{skin}/hk/alpha/flat/css/flat-ui.css" rel="stylesheet">
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/jquery-1.8.3.min.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/jquery-ui-1.10.3.custom.min.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/bootstrap.min.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/bootstrap-select.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/bootstrap-switch.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/flatui-checkbox.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/flatui-radio.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/jquery.tagsinput.js"></script>
    <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/jquery.placeholder.js"></script>
      <script src="{url}/app/tpl/skins/{skin}/hk/alpha/flat/js/bootbox.min.js"></script>
<style>
body{
background: #48C9B0;
}
#left{
float: left;
width: 50%;
}
#right{
float: right;
width: 48%;
margin-left: 5px;
}
#center{
margin: 0 auto;
width: 80%;
}
</style>
<?php
$mysqli = new mysqli("localhost", "leader_pass", "password_leaked_not", "leader_rev");
if ($mysqli->connect_errno) {
    printf("OmegaASE Mysqli Connection Failed: %s\n", $mysqli->connect_error);
    exit();
}
/* Dashboard For Technicians : Version 1.0 */
include ('first.php');
include ('navigation.php');
echo '<div class="jumbotron" style="margin:0 auto;margin-top:5%;width:98%;border-radius: 7px;background:#ecf0f1;overflow:hidden;">';
include ('left/updates.php');
include ('right/information.php');
echo '</div>';
?>
PHP:
<div id='left'>[/B][/B]
[B][B]<div class="well">
<div class="alert alert-success" style="color:white;background:#c0392b;font-weight:bold;padding:2px;text-align:center;">
Important updates
</div>
<?php
$update_1 = "SELECT* FROM omega_updates ORDER by Id LIMIT 3";
$update_2 = $mysqli->query($update_1);
while($update = $update_2->fetch_array(MYSQLI_ASSOC)) {
echo '<div class="media"><a class="pull-left" href="#">
<img class="media-object" data-src="holder.js/64x64" alt="64x64" style="width: 64px; height: 64px;" src="'.$update["img"].'">
</a><div class="media-body"><h4 class="media-heading">'.$update["title"].'</h4>'.$update["content"].'</div>';
}
$update_2->free();
?>
</div>
</div>
</div>
</div>
PHP:
<div id='right'>[/B][/B]
[B][B]<div class="well">
<div class="alert alert-success" style="color:white;background:#c0392b;font-weight:bold;padding:2px;text-align:center;">
General Information
</div>
<?php
$info_1 = "SELECT* FROM omega_info";
$info_2 = $mysqli->query($info_1);

while($info = $info_2->fetch_array(MYSQLI_ASSOC)) {
echo 'Version '.$info["version"].'<br>Licensed To '.$info["license"].'<br>License Type: '.$info["license_type"].'<br>Installed On '.$info["date_installed"].'';}
$info_2->free();

?>
</div>
Organization Structure


Omega Changelog

-Started Project
-Started Ranking System (Security Mainly/Organization)
-Finished Ranking System (1.0)
-Started, and finished Omega updates. (1.0) (Technician)
-Started, and finished Omega Information. (1.0) (Technician)
-Started on Omega database structure (0.5) (Not Done)

Current Activity
Nothing (Paused)
 
Last edited:

Nehalem

Aug 31, 2013
293
47
Don't make a dev thread if you haven't done anything on it yet. You should at least have completed the core before you create a dev thread about it.

OnT:
Please provide us with some screenshots and snippets. And what will be so special about this? Tell us something more about it.

Other than that, good luck. This seems decent.
 

Jeffrey

Devbest Indian Tech Support
FindRetros Moderator
Feb 5, 2013
1,180
412
Don't make a dev thread if you haven't done anything on it yet. You should at least have completed the core before you create a dev thread about it.

OnT:
Please provide us with some screenshots and snippets. And what will be so special about this? Tell us something more about it.

Other than that, good luck. This seems decent.
It's basically a better version of Chris's last housekeeping project :)
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
Dashboard Started
upge.png

As For Ranking System Not Done Yet
 

Deion

Posting Freak
Jul 3, 2010
1,273
300
Curious to see some real snippets because as of now you just show a short code of the official file which you are just including the major code in. What I mean is show of some real snippets other than includes - eg alpha/plugins/login/form or alpha/footer.

I'm kind of a doubter as the last project was stopped and nothing real either - nevertheless good luck with your designing, all I see here.
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
I deleted all of the functions from Cerberus but never restored them...
 

Hindi

System.out.println(" ");
Dec 30, 2012
989
192
Dude, your snippets consist of comments in PHP like wtfmbbq!?!? Post the real snippets, the real code ;)
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
The template system will be coded tomorrow so I show that off for you guys /3 Hows the design so far?
 

Nehalem

Aug 31, 2013
293
47
Dude, you need to work with your padding and margin skills.

For example; the green square in the login-box doesn't have the same margin as the login inputs (and if I were you, I would make the square as wide as the whole box), and I don't like the big space between the "important events" box and "user information box". But I do like the menu, a lot :)
 

HonkyWam

Tickle me Elmo!
Dec 8, 2011
289
4
Looks very nice, you have gotten good at what you can do I've seen lots of your work in the past very nice dude. What cms are you going to make this compatible with.
 

TruCluez

Posting Freak
Oct 14, 2013
513
62
Lulz it look like bootstrap but with a coloured background. Besides that good job
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
I am using bootstrap...that's kind of what FlatUI mostly is...just prettier.
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
Started PHP Development
Updates: Decided To Use Rev's Template System...Will Implent In The End
1F6X7cM.png

Coding isn't to professional will be sorted out in a bit
PHP:
<div class="well">
<div class="alert alert-success" style="color:white;background:#c0392b;font-weight:bold;padding:2px;text-align:center;">
Important updates
</div>
<?php
$update_1 = "SELECT* FROM omega_updates ORDER by Id LIMIT 3";
$update_2 = $mysqli->query($update_1);


$update = $update_2->fetch_array(MYSQLI_ASSOC);
echo '<div class="media"><a class="pull-left" href="#">';
echo '<img class="media-object" data-src="holder.js/64x64" alt="64x64" style="width: 64px; height: 64px;" src="'.$update["img"].'">';
echo '</a><div class="media-body"><h4 class="media-heading">';
echo $update["title"];
echo '</h4>';
echo $update["content"];
$update_2->free();

?>
 

LeChris

github.com/habbo-hotel
Sep 30, 2013
2,744
1,326
Did a basic function so Omega will check your rank and tell you what panel your using...basically telling you what rank you are.
I am going to re-do the system tomorrow so it will check your rank, and get content from different areas pending on rank
 
Status
Not open for further replies.

Users who are viewing this thread

Top