Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Started on Rare Values
Will be doing jQuery popup boxs for viewing rare values items.
- Loading branch information
Showing
8 changed files
with
239 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| <?php | ||
|
|
||
| /* | ||
| _____ _____ _____ _ _ _____ _ _ | ||
| | _ | ___| _ | | | |_ _| | | | | ||
| | |_| | |__ | |_| | | | | | | | |_| | | ||
| | _ | __|| _ | | | | | | \ / | ||
| | |_| | |___| | | | |_| | | | | | | ||
| |_____|_____|_| |_|_____| |_| |_| | ||
| Beauty V1.0.0 | ||
| Rare Values, VIP Shop & Badge Shop | ||
| Copyright Clawed 2013 | ||
| */ | ||
|
|
||
| $page = array( | ||
| "title" => "Rare Values", | ||
| "id" => "values" | ||
| ); | ||
|
|
||
| require_once "global.php"; | ||
|
|
||
| if($config->settings['values']['enabled'] != true and $config->settings['badgeshop']['enabled'] != true and $config->settings['vipshop']['enabled'] != true) | ||
| { | ||
| kill("You have to have at least one thing enabled. Other wise there's no point in having this script."); | ||
| } | ||
|
|
||
| require_once "header.php"; | ||
|
|
||
| $cat = (($_GET['cat'] > 0) ? $core->FilterInput($_GET['cat']) : 0); | ||
|
|
||
| ?> | ||
|
|
||
| <div id="wrapper-container"> | ||
| <div id="margin-container"> | ||
| <div id="column2-container"> | ||
| <div class="box-container"> | ||
| <div class="head-container">Categories</div> | ||
| <div class="content-container"> | ||
| <?php echo $values->GetCategories($cat); ?> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div id="column3-container"> | ||
| <div class="box-container"> | ||
| <div class="head-container"><?php echo $values->GetCategoryName($cat); ?></div> | ||
| <div class="content-container"> | ||
| <?php echo $values->ListItemsFromCategory($cat); ?> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| <?php | ||
|
|
||
| require_once "footer.php"; | ||
|
|
||
| ?> |