diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2011-04-17 20:13:07 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2011-04-17 20:13:07 -0400 |
commit | 0077cb99704fe863cf731fc5cab792af2ede96c2 (patch) | |
tree | dd68f44971aa2aee821f588d33b250dcd2fe57e3 /modules | |
parent | e8b28c5e910d92cbec3d4baa6e98f025e8418d28 (diff) | |
download | bayonetcms-0077cb99704fe863cf731fc5cab792af2ede96c2.tar.gz |
Backporting retarded amount of changes outside of version control
Diffstat (limited to 'modules')
148 files changed, 2742 insertions, 1132 deletions
diff --git a/modules/admin/admin_functions.php b/modules/admin/admin_functions.php index 6c2b394..d0d54a8 100644 --- a/modules/admin/admin_functions.php +++ b/modules/admin/admin_functions.php @@ -1,152 +1,152 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
-if(!defined("ADMIN_FILE"))
-{
- die("Access denied.");
- return;
-}
-
-function is_loggedin()
-{
- $id = session_id();
- if($id == "")
- {
- header("location: index.php");
- return false;
- }
- return true;
-}
-
-function login()
-{
- global $db;
-
- if(isset($_SESSION['username']) || isset($_SESSION['password']))
- {
- return true;
- }
-
- if(isset($_POST['processed']))
- {
- $username = addslashes($_POST['username']);
- $password = addslashes($_POST['password']);
- $password = crypt(md5($password),'iamnotadirtywhorebitch');
- $result = $db->Query("SELECT * FROM bayonet_users WHERE username = '$username' AND password = '$password'");
- $rows = $db->Rows($result);
-
- if($rows > 0)
- {
- $_SESSION['username'] = stripslashes($username);
- $_SESSION['password'] = stripslashes($password);
- return true;
- }
- else
- {
- ReportError("Login incorrect.");
- return false;
- }
-
- }
- else
- {
- echo "<form action=\"\" method=\"post\">\n";
- OpenTable();
- echo "<tr><th colspan=\"2\">Administrative Login</th></tr>\n";
-
- echo "<tr><td><table width=\"5\" align=\"center\">\n
- <tr><th style=\"text-align:right;\">Username</th><td><input size=\"20\" type=\"text\" name=\"username\"></td></tr>\n
- <tr><th style=\"text-align:right;\">Password</th><td><input size=\"20\" type=\"password\" name=\"password\"></td></tr>\n
- <tr><th colspan=\"2\" align=\"right\"><input type=\"Submit\" name=\"processed\" value=\"Submit\"></th></tr></td></tr>\n
- </table>\n";
- CloseTable();
- echo "</form>\n";
- return false;
- }
-}
-
-function logout()
-{
- session_unset();
- session_destroy();
-}
-*/
-/**
- * CompileAdmin()
- *
- * because we want to have a horizontal display of options, we need to have
- * the data separated by arrays. the data is processed into single tables, and is
- * echoed in realtime. we checked to make sure they were arrays, but there is no
- * checking to make sure the data passed is not malicious in nature.
- *
- * @param mixed $head
- * @param mixed $body
- * @return
- */
- /*
-function CompileAdmin($head,$body)
-{
- /*if we were not passed arrays, then say goodbye
- if(!is_array($head) || !is_array($body))
- {
- echo "must be array\n";
- return;
- }
-
- echo "<table class=\"cleartable\" width=\"100%\">";
- echo "<tr style=\"text-align:center; height:90px;\">";
-
- $num = 1;
- foreach($body as $td)
- {
- echo "<td class=\"center\" style=\"width:25%;\">$td</td>\n";
- if($num%4 == 0){
- echo "</tr><tr style=\"text-align:center; height:90px;\">";
- }
- $num++;
- }
- echo "</tr></table>\n";
-}
-
-
- * OpenTable()
- *
- * The administration OpenTable() function requires an argument to define
- * the header title. It may be wise to replace the standard OpenTable() function
- * with this one... that's alot of code to unfuck though.
- *
- * @param mixed $title
- * @return
-
-function OpenTable_Ex($title)
-{
- echo "<table align=\"center\"><tr><th>{$title}</th></tr><tr><td>";
-}
-
-
- * CloseTable()
- *
- * @return
-
-function CloseTable_Ex()
-{
- echo "</td></tr></table>";
-}
- */
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + /* +if(!defined("ADMIN_FILE")) +{ + die("Access denied."); + return; +} + +function is_loggedin() +{ + $id = session_id(); + if($id == "") + { + header("location: index.php"); + return false; + } + return true; +} + +function login() +{ + global $db; + + if(isset($_SESSION['username']) || isset($_SESSION['password'])) + { + return true; + } + + if(isset($_POST['processed'])) + { + $username = addslashes($_POST['username']); + $password = addslashes($_POST['password']); + $password = crypt(md5($password),'iamnotadirtywhorebitch'); + $result = $db->Query("SELECT * FROM bayonet_users WHERE username = '$username' AND password = '$password'"); + $rows = $db->Rows($result); + + if($rows > 0) + { + $_SESSION['username'] = stripslashes($username); + $_SESSION['password'] = stripslashes($password); + return true; + } + else + { + ReportError("Login incorrect."); + return false; + } + + } + else + { + echo "<form action=\"\" method=\"post\">\n"; + OpenTable(); + echo "<tr><th colspan=\"2\">Administrative Login</th></tr>\n"; + + echo "<tr><td><table width=\"5\" align=\"center\">\n + <tr><th style=\"text-align:right;\">Username</th><td><input size=\"20\" type=\"text\" name=\"username\"></td></tr>\n + <tr><th style=\"text-align:right;\">Password</th><td><input size=\"20\" type=\"password\" name=\"password\"></td></tr>\n + <tr><th colspan=\"2\" align=\"right\"><input type=\"Submit\" name=\"processed\" value=\"Submit\"></th></tr></td></tr>\n + </table>\n"; + CloseTable(); + echo "</form>\n"; + return false; + } +} + +function logout() +{ + session_unset(); + session_destroy(); +} +*/ +/** + * CompileAdmin() + * + * because we want to have a horizontal display of options, we need to have + * the data separated by arrays. the data is processed into single tables, and is + * echoed in realtime. we checked to make sure they were arrays, but there is no + * checking to make sure the data passed is not malicious in nature. + * + * @param mixed $head + * @param mixed $body + * @return + */ + /* +function CompileAdmin($head,$body) +{ + /*if we were not passed arrays, then say goodbye + if(!is_array($head) || !is_array($body)) + { + echo "must be array\n"; + return; + } + + echo "<table class=\"cleartable\" width=\"100%\">"; + echo "<tr style=\"text-align:center; height:90px;\">"; + + $num = 1; + foreach($body as $td) + { + echo "<td class=\"center\" style=\"width:25%;\">$td</td>\n"; + if($num%4 == 0){ + echo "</tr><tr style=\"text-align:center; height:90px;\">"; + } + $num++; + } + echo "</tr></table>\n"; +} + + + * OpenTable() + * + * The administration OpenTable() function requires an argument to define + * the header title. It may be wise to replace the standard OpenTable() function + * with this one... that's alot of code to unfuck though. + * + * @param mixed $title + * @return + +function OpenTable_Ex($title) +{ + echo "<table align=\"center\"><tr><th>{$title}</th></tr><tr><td>"; +} + + + * CloseTable() + * + * @return + +function CloseTable_Ex() +{ + echo "</td></tr></table>"; +} + */ ?>
\ No newline at end of file diff --git a/modules/admin/blocks/functions.php b/modules/admin/blocks/functions.php index 0138839..2c7b166 100644 --- a/modules/admin/blocks/functions.php +++ b/modules/admin/blocks/functions.php @@ -1,173 +1,173 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-function ListBlocks()
-{
- global $db;
- $result = $db->Query("SELECT * FROM bayonet_blocks");
- $blocks = $db->Fetch();
-
- echo "<table align=\"center\"><tr><th colspan=\"3\">Existing Blocks</th></tr>";
- foreach($blocks as $block)
- {
- echo "<tr><td>{$block['weight']} : {$block['dir_name']}</td><td><a href=\"?load=admin&op=blocks&edit={$block['block_id']}\">Edit</a></td><td><a href=\"?load=admin&op=blocks&delete={$block['block_id']}\">Delete</a></td></tr>";
- }
- echo "</table>";
-}
-
-function NewBlock()
-{
- global $db;
- if(isset($_POST['processed']))
- {
- //Secure our data to prevent injection attacks.
- $weight = addslashes($_POST['weight']);
- $dir_name = addslashes($_POST['dir_name']);
- $position = addslashes($_POST['position']);
- $active = addslashes($_POST['active']);
-
- if(empty($weight) || empty($dir_name) || empty($position))
- {
- echo "You must fill everything out before proceeding.";
- return;
- }
- //Update the database with the new data.
- $db->Query("INSERT INTO bayonet_blocks SET weight = '$weight', dir_name = '$dir_name', position = '$position', active = '$active'");
- //die, because we have completed what we wanted to do.
- echo "New block, '$dir_name', at position '$weight' added.\n";
- return;
- }
-
- ?>
- <form action="<?php $_SERVER['PHP_SELF']?>" method="post">
- <table align="center">
- <tr><th>Weight</th><td><input type="text" name="weight" value="<?php echo $block['weight'] ?>"></td></tr>
- <tr><th>Position</th><td><input type="text" name="position" value="<?php echo $block['position'] ?>"></td></tr>
- <tr><th>Directory Name</th><td><input type="text" name="dir_name" value="<?php echo $block['dir_name'] ?>"></td>
- <tr><th>Active</th><td>
- <select name="active">
- <option value="1">Yes</option>
- <option value="0">No</option>
- </select></td>
- <tr><th colspan="2"><input type="submit" name="processed" value="Submit"></th></tr>
- </table>
- </form>
- <?php
-}
-
-function GetActive($block_id, &$active)
-{
- $options = array(1 => 'Yes',0 => 'No');
- foreach($options as $option => $value)
- {
- $selected = NULL;
- if($active == $option)
- {
- $selected = "selected";
- }
- echo "<option " . $selected . " value=\"". $option ."\">" . $value . "</option>\n";
- }
-
-
-}
-
-function EditBlock($block_id)
-{
- global $db;
- if(isset($_POST['processed']))
- {
- //Secure our data to prevent injection attacks.
- $weight = addslashes($_POST['weight']);
- $dir_name = addslashes($_POST['dir_name']);
- $position = addslashes($_POST['position']);
- $active = addslashes($_POST['active']);
-
- if(empty($weight) || empty($dir_name) || empty($position))
- {
- echo "You must fill everything out before proceeding.";
- return;
- }
-
- //Update the database with the new data.
- $db->Query("UPDATE bayonet_blocks SET weight = '$weight', dir_name = '$dir_name', position = '$position', active = '$active' WHERE block_id = '$block_id'");
- //$isActive = $active ? "IS" : "IS NOT";
- echo "Block, '$dir_name', at position '$weight' has been edited.\n";
- //die, because we have completed what we wanted to do.
- return;
- }
-
- //Grab the page from the database according to the $page_id passed to the function.
- // {{{ XXX: FIXME -- Re-write this
- /*
- $result = $db->Query("SELECT weight,dir_name,position,active FROM bayonet_blocks WHERE block_id = '$block_id'");
- while(($row = $db->Fetch($result))!=false)
- {
- //We only want one row, so we don't have to $block[]... No foreach necessary.
- $block = $row;
- }
- */
- // }}}
- ?>
- <form action="<?php $_SERVER['PHP_SELF']?>" method="post">
- <table align="center">
- <tr><th>Weight</th><td><input type="text" name="weight" value="<?php echo $block['weight'] ?>"></td></tr>
- <tr><th>Position</th><td><input type="text" name="position" value="<?php echo $block['position'] ?>"></td></tr>
- <tr><th>Directory Name</th><td><input type="text" name="dir_name" value="<?php echo $block['dir_name'] ?>"></td>
- <tr><th>Active</th><td>
- <select name="active">
- <?php GetActive($block_id, $block['active']) ?>
- </select>
- </td>
-
- <tr><th colspan="2"><input type="submit" name="processed" value="Submit"></th></tr>
- </table>
- </form>
- <?php
-}
-
-function DeleteBlock($block_id)
-{
- global $db;
-
- $result = $db->Query("SELECT dir_name FROM bayonet_blocks WHERE block_id = '$block_id'");
- $block = $db->Fetch($result);
-
- if(isset($_POST['proceed']))
- {
- echo "Block '{$block['dir_name']}', was deleted.";
- $db->Query("DELETE FROM bayonet_blocks WHERE block_id = '$block_id' LIMIT 1");
- return;
- }
- if(isset($_POST['cancel']))
- {
- echo "User cancelled deletion of page: '{$block['dir_name']}'";
- return;
- }
-
- ?>
- <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post">
- <table align="center">
- <th>Are you SURE you want to delete the block titled: '<?php echo $block['dir_name']?>'?</th>
- <tr><th><button name="proceed">Yes</button> <button name="cancel">No</button></th></tr>
- </table>
- </form>
- <?php
-}
-
-?>
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +function ListBlocks() +{ + global $db; + $result = $db->Query("SELECT * FROM bayonet_blocks"); + $blocks = $db->Fetch(); + + echo "<table align=\"center\"><tr><th colspan=\"3\">Existing Blocks</th></tr>"; + foreach($blocks as $block) + { + echo "<tr><td>{$block['weight']} : {$block['dir_name']}</td><td><a href=\"?load=admin&op=blocks&edit={$block['block_id']}\">Edit</a></td><td><a href=\"?load=admin&op=blocks&delete={$block['block_id']}\">Delete</a></td></tr>"; + } + echo "</table>"; +} + +function NewBlock() +{ + global $db; + if(isset($_POST['processed'])) + { + //Secure our data to prevent injection attacks. + $weight = addslashes($_POST['weight']); + $dir_name = addslashes($_POST['dir_name']); + $position = addslashes($_POST['position']); + $active = addslashes($_POST['active']); + + if(empty($weight) || empty($dir_name) || empty($position)) + { + echo "You must fill everything out before proceeding."; + return; + } + //Update the database with the new data. + $db->Query("INSERT INTO bayonet_blocks SET weight = '$weight', dir_name = '$dir_name', position = '$position', active = '$active'"); + //die, because we have completed what we wanted to do. + echo "New block, '$dir_name', at position '$weight' added.\n"; + return; + } + + ?> + <form action="<?php $_SERVER['PHP_SELF']?>" method="post"> + <table align="center"> + <tr><th>Weight</th><td><input type="text" name="weight" value="<?php echo $block['weight'] ?>"></td></tr> + <tr><th>Position</th><td><input type="text" name="position" value="<?php echo $block['position'] ?>"></td></tr> + <tr><th>Directory Name</th><td><input type="text" name="dir_name" value="<?php echo $block['dir_name'] ?>"></td> + <tr><th>Active</th><td> + <select name="active"> + <option value="1">Yes</option> + <option value="0">No</option> + </select></td> + <tr><th colspan="2"><input type="submit" name="processed" value="Submit"></th></tr> + </table> + </form> + <?php +} + +function GetActive($block_id, &$active) +{ + $options = array(1 => 'Yes',0 => 'No'); + foreach($options as $option => $value) + { + $selected = NULL; + if($active == $option) + { + $selected = "selected"; + } + echo "<option " . $selected . " value=\"". $option ."\">" . $value . "</option>\n"; + } + + +} + +function EditBlock($block_id) +{ + global $db; + if(isset($_POST['processed'])) + { + //Secure our data to prevent injection attacks. + $weight = addslashes($_POST['weight']); + $dir_name = addslashes($_POST['dir_name']); + $position = addslashes($_POST['position']); + $active = addslashes($_POST['active']); + + if(empty($weight) || empty($dir_name) || empty($position)) + { + echo "You must fill everything out before proceeding."; + return; + } + + //Update the database with the new data. + $db->Query("UPDATE bayonet_blocks SET weight = '$weight', dir_name = '$dir_name', position = '$position', active = '$active' WHERE block_id = '$block_id'"); + //$isActive = $active ? "IS" : "IS NOT"; + echo "Block, '$dir_name', at position '$weight' has been edited.\n"; + //die, because we have completed what we wanted to do. + return; + } + + //Grab the page from the database according to the $page_id passed to the function. + // {{{ XXX: FIXME -- Re-write this + /* + $result = $db->Query("SELECT weight,dir_name,position,active FROM bayonet_blocks WHERE block_id = '$block_id'"); + while(($row = $db->Fetch($result))!=false) + { + //We only want one row, so we don't have to $block[]... No foreach necessary. + $block = $row; + } + */ + // }}} + ?> + <form action="<?php $_SERVER['PHP_SELF']?>" method="post"> + <table align="center"> + <tr><th>Weight</th><td><input type="text" name="weight" value="<?php echo $block['weight'] ?>"></td></tr> + <tr><th>Position</th><td><input type="text" name="position" value="<?php echo $block['position'] ?>"></td></tr> + <tr><th>Directory Name</th><td><input type="text" name="dir_name" value="<?php echo $block['dir_name'] ?>"></td> + <tr><th>Active</th><td> + <select name="active"> + <?php GetActive($block_id, $block['active']) ?> + </select> + </td> + + <tr><th colspan="2"><input type="submit" name="processed" value="Submit"></th></tr> + </table> + </form> + <?php +} + +function DeleteBlock($block_id) +{ + global $db; + + $result = $db->Query("SELECT dir_name FROM bayonet_blocks WHERE block_id = '$block_id'"); + $block = $db->Fetch($result); + + if(isset($_POST['proceed'])) + { + echo "Block '{$block['dir_name']}', was deleted."; + $db->Query("DELETE FROM bayonet_blocks WHERE block_id = '$block_id' LIMIT 1"); + return; + } + if(isset($_POST['cancel'])) + { + echo "User cancelled deletion of page: '{$block['dir_name']}'"; + return; + } + + ?> + <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post"> + <table align="center"> + <th>Are you SURE you want to delete the block titled: '<?php echo $block['dir_name']?>'?</th> + <tr><th><button name="proceed">Yes</button> <button name="cancel">No</button></th></tr> + </table> + </form> + <?php +} + +?> diff --git a/modules/admin/blocks/index.php b/modules/admin/blocks/index.php index 6dac3d2..8d63b6d 100644 --- a/modules/admin/blocks/index.php +++ b/modules/admin/blocks/index.php @@ -1,59 +1,59 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/**
- * This file administers the site blocks.
- *
- * -weight
- * -directory name
- */
-
-if(!defined("ADMIN_FILE"))
-{
- die("Access denied.");
-}
-
-
-include $basedir.'blocks/functions.php';
-
-if(isset($_GET['edit']))
-{
- $block_id = $_GET['edit'];
- EditBlock($block_id);
- return;
-}
-
-if(isset($_GET['delete']))
-{
- $block_id = $_GET['delete'];
- DeleteBlock($block_id);
- return;
-}
-
-if(isset($_GET['create']))
-{
- NewBlock();
- return;
-}
-
-echo "<table align=\"center\" width=\"200px\"><tr><th>".LinkInternal('Create a Block','?load=admin&op=blocks&create=true')."</th></tr></table>";
-
-ListBlocks();
-
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +/** + * This file administers the site blocks. + * + * -weight + * -directory name + */ + +if(!defined("ADMIN_FILE")) +{ + die("Access denied."); +} + + +include $basedir.'blocks/functions.php'; + +if(isset($_GET['edit'])) +{ + $block_id = $_GET['edit']; + EditBlock($block_id); + return; +} + +if(isset($_GET['delete'])) +{ + $block_id = $_GET['delete']; + DeleteBlock($block_id); + return; +} + +if(isset($_GET['create'])) +{ + NewBlock(); + return; +} + +echo "<table align=\"center\" width=\"200px\"><tr><th>".LinkInternal('Create a Block','?load=admin&op=blocks&create=true')."</th></tr></table>"; + +ListBlocks(); + ?>
\ No newline at end of file diff --git a/modules/admin/index.php b/modules/admin/index.php index fc379ea..667dc6e 100644 --- a/modules/admin/index.php +++ b/modules/admin/index.php @@ -1,73 +1,73 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
- if(!defined("MODULE_FILE"))
- {
- die("Access denied.");
- }
-
- define("ADMIN_FILE",'admin_file');
- include 'admin_functions.php';
-
- if($_GET['op'] == 'logout')
- {
- logout();
- }
-
- if(login())
- {
- //this is so dirty... sigh.
- if(is_loggedin())
- {
- ?>
- <!-- Add id="wrapper" for full height -->
- <table align="center" width="90%" >
- <tr><td><div style="text-align:right"><a href="?load=admin&op=logout">Logout, <?php echo $_SESSION['username']?></a></div></td></tr>
- <tr><td>
-
- <div class="maincontent">
- <fieldset>
- <legend>Administrative Tools:</legend>
- <?php
- $th = array('Blocks','Pages');
- $td = array(
- //LinkInternal('Blocks','?load=admin&op=blocks'),
- LinkInternal('<img src="images/editpage.png" /><br />Manage Pages','?load=admin&op=pages'),
- LinkInternal('<img src="images/navigation.png" /><br />Edit Navigation','?load=admin'),
- LinkInternal('<img src="images/announcement.png" /><br />Edit Announcements','?load=admin'),
- LinkInternal('<img src="images/calendar.png" /><br />Manage Events','?load=admin'),
- LinkInternal('<img src="images/photogallery.png" /><br />Manage Galleries', '?load=admin')
-
- );
-
- //render administration table
- CompileAdmin($th,$td);
- ?>
- </fieldset>
-
- </td></tr>
- <tr><td><div style="text-align:center"><?php include 'operation.php' ?></div></td></tr>
-
- </table>
- </div>
- <?php )
- }
- } */
-
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + /* + if(!defined("MODULE_FILE")) + { + die("Access denied."); + } + + define("ADMIN_FILE",'admin_file'); + include 'admin_functions.php'; + + if($_GET['op'] == 'logout') + { + logout(); + } + + if(login()) + { + //this is so dirty... sigh. + if(is_loggedin()) + { + ?> + <!-- Add id="wrapper" for full height --> + <table align="center" width="90%" > + <tr><td><div style="text-align:right"><a href="?load=admin&op=logout">Logout, <?php echo $_SESSION['username']?></a></div></td></tr> + <tr><td> + + <div class="maincontent"> + <fieldset> + <legend>Administrative Tools:</legend> + <?php + $th = array('Blocks','Pages'); + $td = array( + //LinkInternal('Blocks','?load=admin&op=blocks'), + LinkInternal('<img src="images/editpage.png" /><br />Manage Pages','?load=admin&op=pages'), + LinkInternal('<img src="images/navigation.png" /><br />Edit Navigation','?load=admin'), + LinkInternal('<img src="images/announcement.png" /><br />Edit Announcements','?load=admin'), + LinkInternal('<img src="images/calendar.png" /><br />Manage Events','?load=admin'), + LinkInternal('<img src="images/photogallery.png" /><br />Manage Galleries', '?load=admin') + + ); + + //render administration table + CompileAdmin($th,$td); + ?> + </fieldset> + + </td></tr> + <tr><td><div style="text-align:center"><?php include 'operation.php' ?></div></td></tr> + + </table> + </div> + <?php ) + } + } */ + ?>
\ No newline at end of file diff --git a/modules/admin/operation.php b/modules/admin/operation.php index 2c66ff4..4fb687b 100644 --- a/modules/admin/operation.php +++ b/modules/admin/operation.php @@ -1,53 +1,53 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /*
-if(!defined("ADMIN_FILE"))
-{
- die("Access denied.");
- return;
-}
-
-if(!isset($_GET['op']))
-{
- echo "<center>No operation selected</center>\n";
- return;
-}
-
-$op = $_GET['op'];
-$basedir = 'modules/admin/';
-
-if(file_exists($basedir))
-{
- if(file_exists($basedir . $op))
- {
- include $basedir . $op . '/index.php';
- }
- else
- {
- ReportError("Administrative operation '$op' does not exist.");
- }
-}
-else
-{
- ReportError("Administrative base directory path does not exist.");
-}
-
-
-*/
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + /* +if(!defined("ADMIN_FILE")) +{ + die("Access denied."); + return; +} + +if(!isset($_GET['op'])) +{ + echo "<center>No operation selected</center>\n"; + return; +} + +$op = $_GET['op']; +$basedir = 'modules/admin/'; + +if(file_exists($basedir)) +{ + if(file_exists($basedir . $op)) + { + include $basedir . $op . '/index.php'; + } + else + { + ReportError("Administrative operation '$op' does not exist."); + } +} +else +{ + ReportError("Administrative base directory path does not exist."); +} + + +*/ ?>
\ No newline at end of file diff --git a/modules/admin/pages/functions.php b/modules/admin/pages/functions.php index fc97ffc..f71f90f 100644 --- a/modules/admin/pages/functions.php +++ b/modules/admin/pages/functions.php @@ -1,227 +1,227 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/**
- * Note to anyone feeling the need to edit this file...
- * You MUST declare $db as global inside your functions in order access MySQL from here.
- */
-
-function ListArticles($pageid){
-
- global $db;
- $result = $db->Query("SELECT article_id,title FROM bayonet_articles WHERE `page_id` = $pageid ORDER BY `weight`");
- $articles = $db->Fetch($result);
-
- echo "<table class=\"cleartable\" width=\"100%\" cellspacing=\"0\">";
-
- if(count($articles)==0){
- echo "<tr><td>There are no articles posted on this page.<br /></td></tr></table>";
- return;
- }
- foreach($articles as $article)
- {
- if($_GET['aid'] == $article['article_id'])
- echo '<tr style="background-color:#c1c1c1; height:30px;">';
- else
- echo '<tr style="height:30px;">';
- ?>
-
- <td>^</td>
- <td style="text-align:center; text-overflow:ellipsis; overflow:hidden;">
- <a href="?load=admin&op=pages&edit=<?php echo $pageid; ?>&aid=<?php echo $article['article_id']?>"><?php echo $article['title']; ?></a>
- </td>
- <td>v</td>
- </tr>
-
- <?php
- }
-
- echo "</table>";
-
-
-
-}
-
-function EditArticle($article_id){
-
- global $db;
- //Grab the page from the database according to the $article_id passed to the function.
- // {{{ XXX: FIXME -- Needs to be re-written
- /*
- $result = $db->Query("SELECT title,text FROM bayonet_articles WHERE article_id = '$article_id'");
- while(($row = $db->Fetch($result))!=false)
- {
- //We only want one row, so we don't have to $article[]... No foreach necessary.
- $article = $row;
- }
- */
- // }}}
- ?>
- <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post">
- <table class="cleartable">
- <tr><td>
- <input type="text" name="title" value="<?php echo $article['title'] ?>" maxlength="50" size="30" />
- <input type="submit" name="processed" value="Submit Changes" />
- </td></tr>
- <tr><td><textarea id="markItUp" rows="30" cols="80" name="text"><?php echo $article['text'] ?></textarea></td></tr>
- </table>
- </form>
- <?php
-}
-
-function ListPages($pid = NULL)
-{
- global $db;
- $pages = $db->Query("SELECT page_id,title FROM bayonet_pages");
-
- echo 'Select page: <select id="pagenames" onchange="gotoEditPage(this.id)">';
- echo '<option value="0">- - - - - - - -</option>';
- //echo "<table align=\"center\"><tr><th colspan=\"3\">Existing Pages</th></tr>";
-
-
- foreach($pages as $page)
- {
- if($pid == $page['page_id'])
- echo "<option value=\"{$page['page_id']}\" selected>{$page['title']}</option>";
- else
- echo "<option value=\"{$page['page_id']}\">{$page['title']}</option>";
- }
- echo '</select>';
- // echo "</table>";
-}
-
-function NewPage()
-{
- global $db;
- if(isset($_POST['processed']))
- {
- //Secure our data to prevent injection attacks.
- $title = addslashes($_POST['title']);
- $text = addslashes($_POST['text']);
- if(empty($title) || empty($text))
- {
- echo "You must fill everything out before proceeding.";
- return;
- }
-
- //Update the database with the new data.
- $db->Query("INSERT INTO bayonet_pages SET title = '$title', text = '$text'");
- echo "New page, '$title', has been added.\n";
- //die, because we have completed what we wanted to do.
- return;
- }
-
- ?>
- <h3>Add New Page</h3>
- <form action="<?php $_SERVER['PHP_SELF']?>" method="post">
- <table>
- <tr><th>Title</th><td><input type="text" name="title" value="<?php echo $page['title'] ?>" /></td></tr>
- <tr><th>Text</th><td><textarea id="markItUp" rows="30" cols="80" name="text"><?php echo $page['text'] ?></textarea></td>
- <tr><th colspan="2"><input type="submit" name="processed" value="Submit" /></th></tr>
- </table>
- </form>
- <?php
-}
-
-function EditPage($page_id)
-{
- global $db;
- $page_id = addslashes($page_id);
-
- // If the user has submitted, then process their request.
- if(isset($_POST['processed']))
- {
- //Secure our data to prevent injection attacks.
- $title = addslashes($_POST['title']);
- $text = addslashes($_POST['text']);
- if(empty($title) || empty($text))
- {
- echo "You must fill everything out before proceeding.";
- return;
- }
-
- //Update the database with the new data.
- $db->Query("UPDATE bayonet_pages SET title = '$title', text = '$text' WHERE page_id = '$page_id'");
- echo "Page, '$title', has been edited.\n";
- //die, because we have completed what we wanted to do.
- return;
- }
-
- $aid = $_GET['aid'];
-?>
- <table width="100%">
- <tr>
- <td><?php ListPages($page_id); ?></td>
- <td><?php echo LinkInternal('<img src="images/view.gif" /> View this Page','?load=page&id='.$page_id); ?></td>
- <td class="right"><?php echo LinkInternal('<img src="images/delete.gif" /> Delete this Page','?load=admin&op=pages&delete='.$page_id); ?></td>
- </tr>
- </table>
- <hr />
- <table class="cleartable" width="100%" style="height:95%;" cellspacing="0">
- <tr>
- <td style="vertical-align:top;">
- <?php ListArticles($page_id); ?>
- </td>
- <td style="width:589px; vertical-align:top; border-left:1px solid #848484;">
- <?php
- //if article is set then EditArticle();
- if($aid > 0){
- EditArticle($aid);
- }
- ?>
- </td>
- </tr>
- </table>
- <?php
-}
-
-function DeletePage($page_id)
-{
- global $db;
-
- $result = $db->Query("SELECT title FROM bayonet_pages WHERE page_id = '$page_id'");
- $page = $db->Fetch($result);
-
- if(isset($_POST['proceed']))
- {
- echo "Page '{$page['title']}', was deleted.";
- $db->Query("DELETE FROM bayonet_pages WHERE page_id = '$page_id' LIMIT 1");
- return;
- }
- if(isset($_POST['cancel']))
- {
- echo "User cancelled deletion of page: '{$page['title']}'";
- return;
- }
- if($page_id == 1){
- echo "You can not delete the home page.";
- return;
- }
-
- ?>
- <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post">
- <table>
- <th>Are you SURE you want to delete the page titled: '<?php echo $page['title']?>'?</th>
- <tr><th><button name="proceed">Yes</button> <button name="cancel">No</button></th></tr>
- </table>
- </form>
- <?php
-}
-
-?>
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +/** + * Note to anyone feeling the need to edit this file... + * You MUST declare $db as global inside your functions in order access MySQL from here. + */ + +function ListArticles($pageid){ + + global $db; + $result = $db->Query("SELECT article_id,title FROM bayonet_articles WHERE `page_id` = $pageid ORDER BY `weight`"); + $articles = $db->Fetch($result); + + echo "<table class=\"cleartable\" width=\"100%\" cellspacing=\"0\">"; + + if(count($articles)==0){ + echo "<tr><td>There are no articles posted on this page.<br /></td></tr></table>"; + return; + } + foreach($articles as $article) + { + if($_GET['aid'] == $article['article_id']) + echo '<tr style="background-color:#c1c1c1; height:30px;">'; + else + echo '<tr style="height:30px;">'; + ?> + + <td>^</td> + <td style="text-align:center; text-overflow:ellipsis; overflow:hidden;"> + <a href="?load=admin&op=pages&edit=<?php echo $pageid; ?>&aid=<?php echo $article['article_id']?>"><?php echo $article['title']; ?></a> + </td> + <td>v</td> + </tr> + + <?php + } + + echo "</table>"; + + + +} + +function EditArticle($article_id){ + + global $db; + //Grab the page from the database according to the $article_id passed to the function. + // {{{ XXX: FIXME -- Needs to be re-written + /* + $result = $db->Query("SELECT title,text FROM bayonet_articles WHERE article_id = '$article_id'"); + while(($row = $db->Fetch($result))!=false) + { + //We only want one row, so we don't have to $article[]... No foreach necessary. + $article = $row; + } + */ + // }}} + ?> + <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post"> + <table class="cleartable"> + <tr><td> + <input type="text" name="title" value="<?php echo $article['title'] ?>" maxlength="50" size="30" /> + <input type="submit" name="processed" value="Submit Changes" /> + </td></tr> + <tr><td><textarea id="markItUp" rows="30" cols="80" name="text"><?php echo $article['text'] ?></textarea></td></tr> + </table> + </form> + <?php +} + +function ListPages($pid = NULL) +{ + global $db; + $pages = $db->Query("SELECT page_id,title FROM bayonet_pages"); + + echo 'Select page: <select id="pagenames" onchange="gotoEditPage(this.id)">'; + echo '<option value="0">- - - - - - - -</option>'; + //echo "<table align=\"center\"><tr><th colspan=\"3\">Existing Pages</th></tr>"; + + + foreach($pages as $page) + { + if($pid == $page['page_id']) + echo "<option value=\"{$page['page_id']}\" selected>{$page['title']}</option>"; + else + echo "<option value=\"{$page['page_id']}\">{$page['title']}</option>"; + } + echo '</select>'; + // echo "</table>"; +} + +function NewPage() +{ + global $db; + if(isset($_POST['processed'])) + { + //Secure our data to prevent injection attacks. + $title = addslashes($_POST['title']); + $text = addslashes($_POST['text']); + if(empty($title) || empty($text)) + { + echo "You must fill everything out before proceeding."; + return; + } + + //Update the database with the new data. + $db->Query("INSERT INTO bayonet_pages SET title = '$title', text = '$text'"); + echo "New page, '$title', has been added.\n"; + //die, because we have completed what we wanted to do. + return; + } + + ?> + <h3>Add New Page</h3> + <form action="<?php $_SERVER['PHP_SELF']?>" method="post"> + <table> + <tr><th>Title</th><td><input type="text" name="title" value="<?php echo $page['title'] ?>" /></td></tr> + <tr><th>Text</th><td><textarea id="markItUp" rows="30" cols="80" name="text"><?php echo $page['text'] ?></textarea></td> + <tr><th colspan="2"><input type="submit" name="processed" value="Submit" /></th></tr> + </table> + </form> + <?php +} + +function EditPage($page_id) +{ + global $db; + $page_id = addslashes($page_id); + + // If the user has submitted, then process their request. + if(isset($_POST['processed'])) + { + //Secure our data to prevent injection attacks. + $title = addslashes($_POST['title']); + $text = addslashes($_POST['text']); + if(empty($title) || empty($text)) + { + echo "You must fill everything out before proceeding."; + return; + } + + //Update the database with the new data. + $db->Query("UPDATE bayonet_pages SET title = '$title', text = '$text' WHERE page_id = '$page_id'"); + echo "Page, '$title', has been edited.\n"; + //die, because we have completed what we wanted to do. + return; + } + + $aid = $_GET['aid']; +?> + <table width="100%"> + <tr> + <td><?php ListPages($page_id); ?></td> + <td><?php echo LinkInternal('<img src="images/view.gif" /> View this Page','?load=page&id='.$page_id); ?></td> + <td class="right"><?php echo LinkInternal('<img src="images/delete.gif" /> Delete this Page','?load=admin&op=pages&delete='.$page_id); ?></td> + </tr> + </table> + <hr /> + <table class="cleartable" width="100%" style="height:95%;" cellspacing="0"> + <tr> + <td style="vertical-align:top;"> + <?php ListArticles($page_id); ?> + </td> + <td style="width:589px; vertical-align:top; border-left:1px solid #848484;"> + <?php + //if article is set then EditArticle(); + if($aid > 0){ + EditArticle($aid); + } + ?> + </td> + </tr> + </table> + <?php +} + +function DeletePage($page_id) +{ + global $db; + + $result = $db->Query("SELECT title FROM bayonet_pages WHERE page_id = '$page_id'"); + $page = $db->Fetch($result); + + if(isset($_POST['proceed'])) + { + echo "Page '{$page['title']}', was deleted."; + $db->Query("DELETE FROM bayonet_pages WHERE page_id = '$page_id' LIMIT 1"); + return; + } + if(isset($_POST['cancel'])) + { + echo "User cancelled deletion of page: '{$page['title']}'"; + return; + } + if($page_id == 1){ + echo "You can not delete the home page."; + return; + } + + ?> + <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post"> + <table> + <th>Are you SURE you want to delete the page titled: '<?php echo $page['title']?>'?</th> + <tr><th><button name="proceed">Yes</button> <button name="cancel">No</button></th></tr> + </table> + </form> + <?php +} + +?> diff --git a/modules/admin/pages/index.php b/modules/admin/pages/index.php index 0fb6cff..cb36250 100644 --- a/modules/admin/pages/index.php +++ b/modules/admin/pages/index.php @@ -1,68 +1,68 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- ?>
-
- <div class="maincontent">
- <fieldset style="height:500px">
- <legend>Manage Pages:</legend>
-<?php
-
-if(!defined("ADMIN_FILE"))
-{
- die("Access denied.");
-}
-
-include $basedir.'pages/functions.php';
-
-if(isset($_GET['edit']))
-{
- $page_id = $_GET['edit'];
- EditPage($page_id);
- return;
-}
-
-if(isset($_GET['delete']))
-{
- $page_id = $_GET['delete'];
- DeletePage($page_id);
- return;
-}
-
-if(isset($_GET['create']))
-{
- $create = $_GET['create'];
- if($create)
- {
- NewPage();
- return;
- }
-}
-?>
-
- <table width="100%">
- <tr>
- <td><?php ListPages(); ?></td>
- <td class="right">
- <?php echo LinkInternal('<img src="images/add.gif" /> Create a Page','?load=admin&op=pages&create=true'); ?>
- </td>
-
- <tr>
- </table>
- </fieldset>
-</div>
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + ?> + + <div class="maincontent"> + <fieldset style="height:500px"> + <legend>Manage Pages:</legend> +<?php + +if(!defined("ADMIN_FILE")) +{ + die("Access denied."); +} + +include $basedir.'pages/functions.php'; + +if(isset($_GET['edit'])) +{ + $page_id = $_GET['edit']; + EditPage($page_id); + return; +} + +if(isset($_GET['delete'])) +{ + $page_id = $_GET['delete']; + DeletePage($page_id); + return; +} + +if(isset($_GET['create'])) +{ + $create = $_GET['create']; + if($create) + { + NewPage(); + return; + } +} +?> + + <table width="100%"> + <tr> + <td><?php ListPages(); ?></td> + <td class="right"> + <?php echo LinkInternal('<img src="images/add.gif" /> Create a Page','?load=admin&op=pages&create=true'); ?> + </td> + + <tr> + </table> + </fieldset> +</div> diff --git a/modules/cu3er/config.xml b/modules/cu3er/config.xml new file mode 100644 index 0000000..6cfef6e --- /dev/null +++ b/modules/cu3er/config.xml @@ -0,0 +1,86 @@ +<cu3er> + <settings> + <auto_play> + <defaults symbol="linear" /> + <tweenIn x="5" y="5" width="630" height="10" tint="0xFFFFFF" alpha="0.5"/> + <tweenOver alpha="1"/> + </auto_play> + + <prev_button> + <tweenIn x="20" y="150" width="80" height="80" alpha="0" /> + <tweenOver alpha="0" /> + </prev_button> + + <next_button> + <tweenIn x="610" y="150" width="80" height="80" alpha="0" /> + <tweenOver alpha="0" /> + </next_button> + + <prev_symbol> + <defaults type="2" /> + <tweenIn x="25" y="150" alpha=".5" scaleX="2.0" scaleY="2.0" /> + <tweenOver time="0.15" x="30" scaleX="2.5" scaleY="2.5" /> + </prev_symbol> + + <next_symbol> + <defaults type="2" /> + <tweenIn x="615" y="150" alpha=".5" scaleX="2.0" scaleY="2.0" /> + <tweenOver time="0.15" x="620" scaleX="2.5" scaleY="2.5" /> + </next_symbol> + + <description> + <defaults + round_corners="0, 0, 0, 0" + + heading_font="Verdana" + heading_text_size="42" + heading_text_color="0xFFFFFF" + heading_text_margin="0, 0, 0,24" + + paragraph_font="Verdana" + paragraph_text_size="11" + paragraph_text_color="0xFFFFFF" + paragraph_text_margin="0, 0, 0, 24" + /> + <tweenIn x="0" y="220" width="640" height="100" alpha="0.15" /> + <tweenOver alpha="0.3"/> + </description> + + <transitions slicing="vertical" direction="down" duration="1.0" delay="0.2" cube_color="0x000000" /> + + </settings> + + + <slides> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/team2.png</url> + </slide> + + <transition direction="left"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/arma2.png</url> + <link target="_self">http://www.3rd-infantry-division.org/forums/index.php?board=13.0</link> + </slide> + + <transition duration="0.6" delay=".2" direction="down"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/agwc3.png</url> + </slide> + + <transition num="3" slicing="horizontal" direction="left" delay="0.05"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/recruitmentGT.png</url> + </slide> + + <transition num="3"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/arma2move.png</url> + </slide> + + </slides> +</cu3er>
\ No newline at end of file diff --git a/modules/cu3er/config2.xml b/modules/cu3er/config2.xml new file mode 100644 index 0000000..90db48a --- /dev/null +++ b/modules/cu3er/config2.xml @@ -0,0 +1,80 @@ +<?xml version="1.0" encoding="utf-8" ?> +<cu3er> + <settings> + + <auto_play> + <defaults symbol="linear" /> + <tweenIn x="5" y="5" width="6" height="1" tint="0xFFFFFF" alpha="0.5"/> + <tweenOver alpha="1"/> + </auto_play> + + <prev_button> + <tweenIn x="20" y="150" width="80" height="80" alpha="0" /> + <tweenOver alpha="0" /> + </prev_button> + + <next_button> + <tweenIn x="610" y="150" width="80" height="80" alpha="0" /> + <tweenOver alpha="0" /> + </next_button> + + + + <description> + <defaults + round_corners="0, 0, 0, 0" + + heading_font="Verdana" + heading_text_size="42" + heading_text_color="0xFFFFFF" + heading_text_margin="0, 0, 0,24" + + paragraph_font="Verdana" + paragraph_text_size="11" + paragraph_text_color="0xFFFFFF" + paragraph_text_margin="0, 0, 0, 24" + /> + <tweenIn x="0" y="220" width="640" height="100" alpha="0.15" /> + <tweenOver alpha="0.3"/> + </description> + + <transitions slicing="vertical" direction="down" duration="1.0" delay="0.2" cube_color="0x000000" /> + + </settings> + + + <slides> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/team2.png</url> + </slide> + + <transition direction="left"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/arma2.png</url> + <link target="_self">http://www.3rd-infantry-division.org/forums/index.php?board=13.0</link> + </slide> + + <transition duration="0.6" delay=".2" direction="down"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/agwc3.png</url> + <link target="_blank">http://www.armedglobalwarfare.com</link> + </slide> + + <transition num="3" slicing="horizontal" direction="left" delay="0.05"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/recruitmentGT.png</url> + </slide> + + <transition num="3"/> + + <slide> + <url>http://www.3rd-infantry-division.org/modules/cu3er/images/arma2move.png</url> + </slide> + + </slides> +</cu3er> + diff --git a/modules/cu3er/cu3er.swf b/modules/cu3er/cu3er.swf Binary files differnew file mode 100644 index 0000000..eac3a9e --- /dev/null +++ b/modules/cu3er/cu3er.swf diff --git a/modules/cu3er/cuber.html b/modules/cu3er/cuber.html new file mode 100644 index 0000000..c7eee14 --- /dev/null +++ b/modules/cu3er/cuber.html @@ -0,0 +1,25 @@ +<!-- STEP ONE: insert path to SWFObject JavaScript -->
+<script type="text/javascript" src="js/swfobject/swfobject.js"></script>
+
+<!-- STEP TWO: configure SWFObject JavaScript and embed CU3ER slider -->
+<script type="text/javascript">
+ var flashvars = {};
+ flashvars.xml = "config2.xml";
+ flashvars.font = "font.swf";
+ var attributes = {};
+ attributes.wmode = "transparent";
+ attributes.id = "slider";
+ swfobject.embedSWF("cu3er.swf", "cu3er-container", "640", "320", "9", "expressInstall.swf", flashvars, attributes);
+</script>
+<style type="text/css">
+<!--
+#cu3er-container {width:640px; outline:0;}
+-->
+</style>
+
+<!-- STEP THREE: insert CU3ER div container -->
+<div id="cu3er-container">
+ <a href="http://www.adobe.com/go/getflashplayer">
+ <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
+ </a>
+</div>
\ No newline at end of file diff --git a/modules/cu3er/demo.htm b/modules/cu3er/demo.htm new file mode 100644 index 0000000..8ff0064 --- /dev/null +++ b/modules/cu3er/demo.htm @@ -0,0 +1,35 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>CU3ER - demo!</title> + +<!-- STEP ONE: insert path to SWFObject JavaScript --> +<script type="text/javascript" src="js/swfobject/swfobject.js"></script> + +<!-- STEP TWO: configure SWFObject JavaScript and embed CU3ER slider --> +<script type="text/javascript"> + var flashvars = {}; + flashvars.xml = "config2.xml"; + flashvars.font = "font.swf"; + var attributes = {}; + attributes.wmode = "transparent"; + attributes.id = "slider"; + swfobject.embedSWF("cu3er.swf", "cu3er-container", "640", "320", "9", "expressInstall.swf", flashvars, attributes); +</script> +<style type="text/css"> +<!-- +body { margin: 5% auto; text-align:center;} +#cu3er-container {width:600px; outline:0;} +--> +</style> +</head> +<body> +<!-- STEP THREE: insert CU3ER div container --> +<div id="cu3er-container"> + <a href="http://www.adobe.com/go/getflashplayer"> + <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> + </a> +</div> +</body> +</html> diff --git a/modules/cu3er/images/agwc3.png b/modules/cu3er/images/agwc3.png Binary files differnew file mode 100644 index 0000000..7b6f9a7 --- /dev/null +++ b/modules/cu3er/images/agwc3.png diff --git a/modules/cu3er/images/arma2.png b/modules/cu3er/images/arma2.png Binary files differnew file mode 100644 index 0000000..94fab4a --- /dev/null +++ b/modules/cu3er/images/arma2.png diff --git a/modules/cu3er/images/arma2move.png b/modules/cu3er/images/arma2move.png Binary files differnew file mode 100644 index 0000000..6bffbae --- /dev/null +++ b/modules/cu3er/images/arma2move.png diff --git a/modules/cu3er/images/holidays.png b/modules/cu3er/images/holidays.png Binary files differnew file mode 100644 index 0000000..48a1c72 --- /dev/null +++ b/modules/cu3er/images/holidays.png diff --git a/modules/cu3er/images/newsite.png b/modules/cu3er/images/newsite.png Binary files differnew file mode 100644 index 0000000..b2d2b69 --- /dev/null +++ b/modules/cu3er/images/newsite.png diff --git a/modules/cu3er/images/recruitmentGT.png b/modules/cu3er/images/recruitmentGT.png Binary files differnew file mode 100644 index 0000000..c74ae8c --- /dev/null +++ b/modules/cu3er/images/recruitmentGT.png diff --git a/modules/cu3er/images/slide_1.jpg b/modules/cu3er/images/slide_1.jpg Binary files differnew file mode 100644 index 0000000..77706a2 --- /dev/null +++ b/modules/cu3er/images/slide_1.jpg diff --git a/modules/cu3er/images/slide_2.jpg b/modules/cu3er/images/slide_2.jpg Binary files differnew file mode 100644 index 0000000..3707266 --- /dev/null +++ b/modules/cu3er/images/slide_2.jpg diff --git a/modules/cu3er/images/slide_3.jpg b/modules/cu3er/images/slide_3.jpg Binary files differnew file mode 100644 index 0000000..c633d52 --- /dev/null +++ b/modules/cu3er/images/slide_3.jpg diff --git a/modules/cu3er/images/slide_4.jpg b/modules/cu3er/images/slide_4.jpg Binary files differnew file mode 100644 index 0000000..08bc870 --- /dev/null +++ b/modules/cu3er/images/slide_4.jpg diff --git a/modules/cu3er/images/slide_5.jpg b/modules/cu3er/images/slide_5.jpg Binary files differnew file mode 100644 index 0000000..2564999 --- /dev/null +++ b/modules/cu3er/images/slide_5.jpg diff --git a/modules/cu3er/images/team.png b/modules/cu3er/images/team.png Binary files differnew file mode 100644 index 0000000..fe307c1 --- /dev/null +++ b/modules/cu3er/images/team.png diff --git a/modules/cu3er/images/team2.png b/modules/cu3er/images/team2.png Binary files differnew file mode 100644 index 0000000..889a266 --- /dev/null +++ b/modules/cu3er/images/team2.png diff --git a/modules/cu3er/images/teamwork.png b/modules/cu3er/images/teamwork.png Binary files differnew file mode 100644 index 0000000..99f760b --- /dev/null +++ b/modules/cu3er/images/teamwork.png diff --git a/modules/cu3er/index.php b/modules/cu3er/index.php new file mode 100644 index 0000000..0e5202d --- /dev/null +++ b/modules/cu3er/index.php @@ -0,0 +1,35 @@ +<?php OpenContent(); ?>
+<!-- STEP ONE: insert path to SWFObject JavaScript -->
+<script type="text/javascript" src="modules/cu3er/js/swfobject/swfobject.js"></script>
+
+<!-- STEP TWO: configure SWFObject JavaScript and embed CU3ER slider -->
+<script type="text/javascript">
+ var flashvars = {};
+ flashvars.xml = "modules/cu3er/config2.xml";
+ flashvars.font = "font.swf";
+ var attributes = {};
+ attributes.wmode = "transparent";
+ attributes.id = "slider";
+ swfobject.embedSWF("modules/cu3er/cu3er.swf", "cu3er-container", "640", "320", "9", "modules/cu3er/js/swfobject/expressInstall.swf", flashvars, attributes);
+</script>
+<style type="text/css">
+<!--
+#cu3er-container {width:640px; outline:0;}
+-->
+</style>
+
+<!-- STEP THREE: insert CU3ER div container -->
+<div id="cu3er-container" style="background-color:black;">
+ <a href="http://www.adobe.com/go/getflashplayer">
+ <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
+ </a>
+</div>
+<?php CloseContent(); ?>
+
+<?//php include'cuber.html';
+
+/* <description>
+ <link target="_blank">http://www.3rd-infantry-division.org/forums/index.php?board=13.0</link>
+ <heading>Enlist Today!</heading>
+ <paragraph>Some text.</paragraph>
+ </description> */
\ No newline at end of file diff --git a/modules/cu3er/js/swfobject/expressInstall.swf b/modules/cu3er/js/swfobject/expressInstall.swf Binary files differnew file mode 100644 index 0000000..e972996 --- /dev/null +++ b/modules/cu3er/js/swfobject/expressInstall.swf diff --git a/modules/cu3er/js/swfobject/swfobject.js b/modules/cu3er/js/swfobject/swfobject.js new file mode 100644 index 0000000..9378c8f --- /dev/null +++ b/modules/cu3er/js/swfobject/swfobject.js @@ -0,0 +1,777 @@ +/*! SWFObject v2.2 <http://code.google.com/p/swfobject/> + is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> +*/ + +var swfobject = function() { + + var UNDEF = "undefined", + OBJECT = "object", + SHOCKWAVE_FLASH = "Shockwave Flash", + SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash", + FLASH_MIME_TYPE = "application/x-shockwave-flash", + EXPRESS_INSTALL_ID = "SWFObjectExprInst", + ON_READY_STATE_CHANGE = "onreadystatechange", + + win = window, + doc = document, + nav = navigator, + + plugin = false, + domLoadFnArr = [main], + regObjArr = [], + objIdArr = [], + listenersArr = [], + storedAltContent, + storedAltContentId, + storedCallbackFn, + storedCallbackObj, + isDomLoaded = false, + isExpressInstallActive = false, + dynamicStylesheet, + dynamicStylesheetMedia, + autoHideShow = true, + + /* Centralized function for browser feature detection + - User agent string detection is only used when no good alternative is possible + - Is executed directly for optimal performance + */ + ua = function() { + var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF, + u = nav.userAgent.toLowerCase(), + p = nav.platform.toLowerCase(), + windows = p ? /win/.test(p) : /win/.test(u), + mac = p ? /mac/.test(p) : /mac/.test(u), + webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit + ie = !+"\v1", // feature detection based on Andrea Giammarchi's solution: http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html + playerVersion = [0,0,0], + d = null; + if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) { + d = nav.plugins[SHOCKWAVE_FLASH].description; + if (d && !(typeof nav.mimeTypes != UNDEF && nav.mimeTypes[FLASH_MIME_TYPE] && !nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)) { // navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin indicates whether plug-ins are enabled or disabled in Safari 3+ + plugin = true; + ie = false; // cascaded feature detection for Internet Explorer + d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1"); + playerVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10); + playerVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10); + playerVersion[2] = /[a-zA-Z]/.test(d) ? parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, "$1"), 10) : 0; + } + } + else if (typeof win.ActiveXObject != UNDEF) { + try { + var a = new ActiveXObject(SHOCKWAVE_FLASH_AX); + if (a) { // a will return null when ActiveX is disabled + d = a.GetVariable("$version"); + if (d) { + ie = true; // cascaded feature detection for Internet Explorer + d = d.split(" ")[1].split(","); + playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)]; + } + } + } + catch(e) {} + } + return { w3:w3cdom, pv:playerVersion, wk:webkit, ie:ie, win:windows, mac:mac }; + }(), + + /* Cross-browser onDomLoad + - Will fire an event as soon as the DOM of a web page is loaded + - Internet Explorer workaround based on Diego Perini's solution: http://javascript.nwbox.com/IEContentLoaded/ + - Regular onload serves as fallback + */ + onDomLoad = function() { + if (!ua.w3) { return; } + if ((typeof doc.readyState != UNDEF && doc.readyState == "complete") || (typeof doc.readyState == UNDEF && (doc.getElementsByTagName("body")[0] || doc.body))) { // function is fired after onload, e.g. when script is inserted dynamically + callDomLoadFunctions(); + } + if (!isDomLoaded) { + if (typeof doc.addEventListener != UNDEF) { + doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, false); + } + if (ua.ie && ua.win) { + doc.attachEvent(ON_READY_STATE_CHANGE, function() { + if (doc.readyState == "complete") { + doc.detachEvent(ON_READY_STATE_CHANGE, arguments.callee); + callDomLoadFunctions(); + } + }); + if (win == top) { // if not inside an iframe + (function(){ + if (isDomLoaded) { return; } + try { + doc.documentElement.doScroll("left"); + } + catch(e) { + setTimeout(arguments.callee, 0); + return; + } + callDomLoadFunctions(); + })(); + } + } + if (ua.wk) { + (function(){ + if (isDomLoaded) { return; } + if (!/loaded|complete/.test(doc.readyState)) { + setTimeout(arguments.callee, 0); + return; + } + callDomLoadFunctions(); + })(); + } + addLoadEvent(callDomLoadFunctions); + } + }(); + + function callDomLoadFunctions() { + if (isDomLoaded) { return; } + try { // test if we can really add/remove elements to/from the DOM; we don't want to fire it too early + var t = doc.getElementsByTagName("body")[0].appendChild(createElement("span")); + t.parentNode.removeChild(t); + } + catch (e) { return; } + isDomLoaded = true; + var dl = domLoadFnArr.length; + for (var i = 0; i < dl; i++) { + domLoadFnArr[i](); + } + } + + function addDomLoadEvent(fn) { + if (isDomLoaded) { + fn(); + } + else { + domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+ + } + } + + /* Cross-browser onload + - Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/ + - Will fire an event as soon as a web page including all of its assets are loaded + */ + function addLoadEvent(fn) { + if (typeof win.addEventListener != UNDEF) { + win.addEventListener("load", fn, false); + } + else if (typeof doc.addEventListener != UNDEF) { + doc.addEventListener("load", fn, false); + } + else if (typeof win.attachEvent != UNDEF) { + addListener(win, "onload", fn); + } + else if (typeof win.onload == "function") { + var fnOld = win.onload; + win.onload = function() { + fnOld(); + fn(); + }; + } + else { + win.onload = fn; + } + } + + /* Main function + - Will preferably execute onDomLoad, otherwise onload (as a fallback) + */ + function main() { + if (plugin) { + testPlayerVersion(); + } + else { + matchVersions(); + } + } + + /* Detect the Flash Player version for non-Internet Explorer browsers + - Detecting the plug-in version via the object element is more precise than using the plugins collection item's description: + a. Both release and build numbers can be detected + b. Avoid wrong descriptions by corrupt installers provided by Adobe + c. Avoid wrong descriptions by multiple Flash Player entries in the plugin Array, caused by incorrect browser imports + - Disadvantage of this method is that it depends on the availability of the DOM, while the plugins collection is immediately available + */ + function testPlayerVersion() { + var b = doc.getElementsByTagName("body")[0]; + var o = createElement(OBJECT); + o.setAttribute("type", FLASH_MIME_TYPE); + var t = b.appendChild(o); + if (t) { + var counter = 0; + (function(){ + if (typeof t.GetVariable != UNDEF) { + var d = t.GetVariable("$version"); + if (d) { + d = d.split(" ")[1].split(","); + ua.pv = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)]; + } + } + else if (counter < 10) { + counter++; + setTimeout(arguments.callee, 10); + return; + } + b.removeChild(o); + t = null; + matchVersions(); + })(); + } + else { + matchVersions(); + } + } + + /* Perform Flash Player and SWF version matching; static publishing only + */ + function matchVersions() { + var rl = regObjArr.length; + if (rl > 0) { + for (var i = 0; i < rl; i++) { // for each registered object element + var id = regObjArr[i].id; + var cb = regObjArr[i].callbackFn; + var cbObj = {success:false, id:id}; + if (ua.pv[0] > 0) { + var obj = getElementById(id); + if (obj) { + if (hasPlayerVersion(regObjArr[i].swfVersion) && !(ua.wk && ua.wk < 312)) { // Flash Player version >= published SWF version: Houston, we have a match! + setVisibility(id, true); + if (cb) { + cbObj.success = true; + cbObj.ref = getObjectById(id); + cb(cbObj); + } + } + else if (regObjArr[i].expressInstall && canExpressInstall()) { // show the Adobe Express Install dialog if set by the web page author and if supported + var att = {}; + att.data = regObjArr[i].expressInstall; + att.width = obj.getAttribute("width") || "0"; + att.height = obj.getAttribute("height") || "0"; + if (obj.getAttribute("class")) { att.styleclass = obj.getAttribute("class"); } + if (obj.getAttribute("align")) { att.align = obj.getAttribute("align"); } + // parse HTML object param element's name-value pairs + var par = {}; + var p = obj.getElementsByTagName("param"); + var pl = p.length; + for (var j = 0; j < pl; j++) { + if (p[j].getAttribute("name").toLowerCase() != "movie") { + par[p[j].getAttribute("name")] = p[j].getAttribute("value"); + } + } + showExpressInstall(att, par, id, cb); + } + else { // Flash Player and SWF version mismatch or an older Webkit engine that ignores the HTML object element's nested param elements: display alternative content instead of SWF + displayAltContent(obj); + if (cb) { cb(cbObj); } + } + } + } + else { // if no Flash Player is installed or the fp version cannot be detected we let the HTML object element do its job (either show a SWF or alternative content) + setVisibility(id, true); + if (cb) { + var o = getObjectById(id); // test whether there is an HTML object element or not + if (o && typeof o.SetVariable != UNDEF) { + cbObj.success = true; + cbObj.ref = o; + } + cb(cbObj); + } + } + } + } + } + + function getObjectById(objectIdStr) { + var r = null; + var o = getElementById(objectIdStr); + if (o && o.nodeName == "OBJECT") { + if (typeof o.SetVariable != UNDEF) { + r = o; + } + else { + var n = o.getElementsByTagName(OBJECT)[0]; + if (n) { + r = n; + } + } + } + return r; + } + + /* Requirements for Adobe Express Install + - only one instance can be active at a time + - fp 6.0.65 or higher + - Win/Mac OS only + - no Webkit engines older than version 312 + */ + function canExpressInstall() { + return !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac) && !(ua.wk && ua.wk < 312); + } + + /* Show the Adobe Express Install dialog + - Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75 + */ + function showExpressInstall(att, par, replaceElemIdStr, callbackFn) { + isExpressInstallActive = true; + storedCallbackFn = callbackFn || null; + storedCallbackObj = {success:false, id:replaceElemIdStr}; + var obj = getElementById(replaceElemIdStr); + if (obj) { + if (obj.nodeName == "OBJECT") { // static publishing + storedAltContent = abstractAltContent(obj); + storedAltContentId = null; + } + else { // dynamic publishing + storedAltContent = obj; + storedAltContentId = replaceElemIdStr; + } + att.id = EXPRESS_INSTALL_ID; + if (typeof att.width == UNDEF || (!/%$/.test(att.width) && parseInt(att.width, 10) < 310)) { att.width = "310"; } + if (typeof att.height == UNDEF || (!/%$/.test(att.height) && parseInt(att.height, 10) < 137)) { att.height = "137"; } + doc.title = doc.title.slice(0, 47) + " - Flash Player Installation"; + var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn", + fv = "MMredirectURL=" + win.location.toString().replace(/&/g,"%26") + "&MMplayerType=" + pt + "&MMdoctitle=" + doc.title; + if (typeof par.flashvars != UNDEF) { + par.flashvars += "&" + fv; + } + else { + par.flashvars = fv; + } + // IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it, + // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work + if (ua.ie && ua.win && obj.readyState != 4) { + var newObj = createElement("div"); + replaceElemIdStr += "SWFObjectNew"; + newObj.setAttribute("id", replaceElemIdStr); + obj.parentNode.insertBefore(newObj, obj); // insert placeholder div that will be replaced by the object element that loads expressinstall.swf + obj.style.display = "none"; + (function(){ + if (obj.readyState == 4) { + obj.parentNode.removeChild(obj); + } + else { + setTimeout(arguments.callee, 10); + } + })(); + } + createSWF(att, par, replaceElemIdStr); + } + } + + /* Functions to abstract and display alternative content + */ + function displayAltContent(obj) { + if (ua.ie && ua.win && obj.readyState != 4) { + // IE only: when a SWF is loading (AND: not available in cache) wait for the readyState of the object element to become 4 before removing it, + // because you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work + var el = createElement("div"); + obj.parentNode.insertBefore(el, obj); // insert placeholder div that will be replaced by the alternative content + el.parentNode.replaceChild(abstractAltContent(obj), el); + obj.style.display = "none"; + (function(){ + if (obj.readyState == 4) { + obj.parentNode.removeChild(obj); + } + else { + setTimeout(arguments.callee, 10); + } + })(); + } + else { + obj.parentNode.replaceChild(abstractAltContent(obj), obj); + } + } + + function abstractAltContent(obj) { + var ac = createElement("div"); + if (ua.win && ua.ie) { + ac.innerHTML = obj.innerHTML; + } + else { + var nestedObj = obj.getElementsByTagName(OBJECT)[0]; + if (nestedObj) { + var c = nestedObj.childNodes; + if (c) { + var cl = c.length; + for (var i = 0; i < cl; i++) { + if (!(c[i].nodeType == 1 && c[i].nodeName == "PARAM") && !(c[i].nodeType == 8)) { + ac.appendChild(c[i].cloneNode(true)); + } + } + } + } + } + return ac; + } + + /* Cross-browser dynamic SWF creation + */ + function createSWF(attObj, parObj, id) { + var r, el = getElementById(id); + if (ua.wk && ua.wk < 312) { return r; } + if (el) { + if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content + attObj.id = id; + } + if (ua.ie && ua.win) { // Internet Explorer + the HTML object element + W3C DOM methods do not combine: fall back to outerHTML + var att = ""; + for (var i in attObj) { + if (attObj[i] != Object.prototype[i]) { // filter out prototype additions from other potential libraries + if (i.toLowerCase() == "data") { + parObj.movie = attObj[i]; + } + else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword + att += ' class="' + attObj[i] + '"'; + } + else if (i.toLowerCase() != "classid") { + att += ' ' + i + '="' + attObj[i] + '"'; + } + } + } + var par = ""; + for (var j in parObj) { + if (parObj[j] != Object.prototype[j]) { // filter out prototype additions from other potential libraries + par += '<param name="' + j + '" value="' + parObj[j] + '" />'; + } + } + el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>'; + objIdArr[objIdArr.length] = attObj.id; // stored to fix object 'leaks' on unload (dynamic publishing only) + r = getElementById(attObj.id); + } + else { // well-behaving browsers + var o = createElement(OBJECT); + o.setAttribute("type", FLASH_MIME_TYPE); + for (var m in attObj) { + if (attObj[m] != Object.prototype[m]) { // filter out prototype additions from other potential libraries + if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword + o.setAttribute("class", attObj[m]); + } + else if (m.toLowerCase() != "classid") { // filter out IE specific attribute + o.setAttribute(m, attObj[m]); + } + } + } + for (var n in parObj) { + if (parObj[n] != Object.prototype[n] && n.toLowerCase() != "movie") { // filter out prototype additions from other potential libraries and IE specific param element + createObjParam(o, n, parObj[n]); + } + } + el.parentNode.replaceChild(o, el); + r = o; + } + } + return r; + } + + function createObjParam(el, pName, pValue) { + var p = createElement("param"); + p.setAttribute("name", pName); + p.setAttribute("value", pValue); + el.appendChild(p); + } + + /* Cross-browser SWF removal + - Especially needed to safely and completely remove a SWF in Internet Explorer + */ + function removeSWF(id) { + var obj = getElementById(id); + if (obj && obj.nodeName == "OBJECT") { + if (ua.ie && ua.win) { + obj.style.display = "none"; + (function(){ + if (obj.readyState == 4) { + removeObjectInIE(id); + } + else { + setTimeout(arguments.callee, 10); + } + })(); + } + else { + obj.parentNode.removeChild(obj); + } + } + } + + function removeObjectInIE(id) { + var obj = getElementById(id); + if (obj) { + for (var i in obj) { + if (typeof obj[i] == "function") { + obj[i] = null; + } + } + obj.parentNode.removeChild(obj); + } + } + + /* Functions to optimize JavaScript compression + */ + function getElementById(id) { + var el = null; + try { + el = doc.getElementById(id); + } + catch (e) {} + return el; + } + + function createElement(el) { + return doc.createElement(el); + } + + /* Updated attachEvent function for Internet Explorer + - Stores attachEvent information in an Array, so on unload the detachEvent functions can be called to avoid memory leaks + */ + function addListener(target, eventType, fn) { + target.attachEvent(eventType, fn); + listenersArr[listenersArr.length] = [target, eventType, fn]; + } + + /* Flash Player and SWF content version matching + */ + function hasPlayerVersion(rv) { + var pv = ua.pv, v = rv.split("."); + v[0] = parseInt(v[0], 10); + v[1] = parseInt(v[1], 10) || 0; // supports short notation, e.g. "9" instead of "9.0.0" + v[2] = parseInt(v[2], 10) || 0; + return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false; + } + + /* Cross-browser dynamic CSS creation + - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php + */ + function createCSS(sel, decl, media, newStyle) { + if (ua.ie && ua.mac) { return; } + var h = doc.getElementsByTagName("head")[0]; + if (!h) { return; } // to also support badly authored HTML pages that lack a head element + var m = (media && typeof media == "string") ? media : "screen"; + if (newStyle) { + dynamicStylesheet = null; + dynamicStylesheetMedia = null; + } + if (!dynamicStylesheet || dynamicStylesheetMedia != m) { + // create dynamic stylesheet + get a global reference to it + var s = createElement("style"); + s.setAttribute("type", "text/css"); + s.setAttribute("media", m); + dynamicStylesheet = h.appendChild(s); + if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) { + dynamicStylesheet = doc.styleSheets[doc.styleSheets.length - 1]; + } + dynamicStylesheetMedia = m; + } + // add style rule + if (ua.ie && ua.win) { + if (dynamicStylesheet && typeof dynamicStylesheet.addRule == OBJECT) { + dynamicStylesheet.addRule(sel, decl); + } + } + else { + if (dynamicStylesheet && typeof doc.createTextNode != UNDEF) { + dynamicStylesheet.appendChild(doc.createTextNode(sel + " {" + decl + "}")); + } + } + } + + function setVisibility(id, isVisible) { + if (!autoHideShow) { return; } + var v = isVisible ? "visible" : "hidden"; + if (isDomLoaded && getElementById(id)) { + getElementById(id).style.visibility = v; + } + else { + createCSS("#" + id, "visibility:" + v); + } + } + + /* Filter to avoid XSS attacks + */ + function urlEncodeIfNecessary(s) { + var regex = /[\\\"<>\.;]/; + var hasBadChars = regex.exec(s) != null; + return hasBadChars && typeof encodeURIComponent != UNDEF ? encodeURIComponent(s) : s; + } + + /* Release memory to avoid memory leaks caused by closures, fix hanging audio/video threads and force open sockets/NetConnections to disconnect (Internet Explorer only) + */ + var cleanup = function() { + if (ua.ie && ua.win) { + window.attachEvent("onunload", function() { + // remove listeners to avoid memory leaks + var ll = listenersArr.length; + for (var i = 0; i < ll; i++) { + listenersArr[i][0].detachEvent(listenersArr[i][1], listenersArr[i][2]); + } + // cleanup dynamically embedded objects to fix audio/video threads and force open sockets and NetConnections to disconnect + var il = objIdArr.length; + for (var j = 0; j < il; j++) { + removeSWF(objIdArr[j]); + } + // cleanup library's main closures to avoid memory leaks + for (var k in ua) { + ua[k] = null; + } + ua = null; + for (var l in swfobject) { + swfobject[l] = null; + } + swfobject = null; + }); + } + }(); + + return { + /* Public API + - Reference: http://code.google.com/p/swfobject/wiki/documentation + */ + registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr, callbackFn) { + if (ua.w3 && objectIdStr && swfVersionStr) { + var regObj = {}; + regObj.id = objectIdStr; + regObj.swfVersion = swfVersionStr; + regObj.expressInstall = xiSwfUrlStr; + regObj.callbackFn = callbackFn; + regObjArr[regObjArr.length] = regObj; + setVisibility(objectIdStr, false); + } + else if (callbackFn) { + callbackFn({success:false, id:objectIdStr}); + } + }, + + getObjectById: function(objectIdStr) { + if (ua.w3) { + return getObjectById(objectIdStr); + } + }, + + embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj, callbackFn) { + var callbackObj = {success:false, id:replaceElemIdStr}; + if (ua.w3 && !(ua.wk && ua.wk < 312) && swfUrlStr && replaceElemIdStr && widthStr && heightStr && swfVersionStr) { + setVisibility(replaceElemIdStr, false); + addDomLoadEvent(function() { + widthStr += ""; // auto-convert to string + heightStr += ""; + var att = {}; + if (attObj && typeof attObj === OBJECT) { + for (var i in attObj) { // copy object to avoid the use of references, because web authors often reuse attObj for multiple SWFs + att[i] = attObj[i]; + } + } + att.data = swfUrlStr; + att.width = widthStr; + att.height = heightStr; + var par = {}; + if (parObj && typeof parObj === OBJECT) { + for (var j in parObj) { // copy object to avoid the use of references, because web authors often reuse parObj for multiple SWFs + par[j] = parObj[j]; + } + } + if (flashvarsObj && typeof flashvarsObj === OBJECT) { + for (var k in flashvarsObj) { // copy object to avoid the use of references, because web authors often reuse flashvarsObj for multiple SWFs + if (typeof par.flashvars != UNDEF) { + par.flashvars += "&" + k + "=" + flashvarsObj[k]; + } + else { + par.flashvars = k + "=" + flashvarsObj[k]; + } + } + } + if (hasPlayerVersion(swfVersionStr)) { // create SWF + var obj = createSWF(att, par, replaceElemIdStr); + if (att.id == replaceElemIdStr) { + setVisibility(replaceElemIdStr, true); + } + callbackObj.success = true; + callbackObj.ref = obj; + } + else if (xiSwfUrlStr && canExpressInstall()) { // show Adobe Express Install + att.data = xiSwfUrlStr; + showExpressInstall(att, par, replaceElemIdStr, callbackFn); + return; + } + else { // show alternative content + setVisibility(replaceElemIdStr, true); + } + if (callbackFn) { callbackFn(callbackObj); } + }); + } + else if (callbackFn) { callbackFn(callbackObj); } + }, + + switchOffAutoHideShow: function() { + autoHideShow = false; + }, + + ua: ua, + + getFlashPlayerVersion: function() { + return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] }; + }, + + hasFlashPlayerVersion: hasPlayerVersion, + + createSWF: function(attObj, parObj, replaceElemIdStr) { + if (ua.w3) { + return createSWF(attObj, parObj, replaceElemIdStr); + } + else { + return undefined; + } + }, + + showExpressInstall: function(att, par, replaceElemIdStr, callbackFn) { + if (ua.w3 && canExpressInstall()) { + showExpressInstall(att, par, replaceElemIdStr, callbackFn); + } + }, + + removeSWF: function(objElemIdStr) { + if (ua.w3) { + removeSWF(objElemIdStr); + } + }, + + createCSS: function(selStr, declStr, mediaStr, newStyleBoolean) { + if (ua.w3) { + createCSS(selStr, declStr, mediaStr, newStyleBoolean); + } + }, + + addDomLoadEvent: addDomLoadEvent, + + addLoadEvent: addLoadEvent, + + getQueryParamValue: function(param) { + var q = doc.location.search || doc.location.hash; + if (q) { + if (/\?/.test(q)) { q = q.split("?")[1]; } // strip question mark + if (param == null) { + return urlEncodeIfNecessary(q); + } + var pairs = q.split("&"); + for (var i = 0; i < pairs.length; i++) { + if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) { + return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=") + 1))); + } + } + } + return ""; + }, + + // For internal usage only + expressInstallCallback: function() { + if (isExpressInstallActive) { + var obj = getElementById(EXPRESS_INSTALL_ID); + if (obj && storedAltContent) { + obj.parentNode.replaceChild(storedAltContent, obj); + if (storedAltContentId) { + setVisibility(storedAltContentId, true); + if (ua.ie && ua.win) { storedAltContent.style.display = "block"; } + } + if (storedCallbackFn) { storedCallbackFn(storedCallbackObj); } + } + isExpressInstallActive = false; + } + } + }; +}(); diff --git a/modules/cu3er/license.txt b/modules/cu3er/license.txt new file mode 100644 index 0000000..24f51bb --- /dev/null +++ b/modules/cu3er/license.txt @@ -0,0 +1,53 @@ +Copyright (c) 2010, Stefan Kovac +All rights reserved. + +By downloading CU3ER v0.9.2 - flash 3D slider, you agree to the following: + +Stefan Kovac grants you the non-exclusive, non-transferable license +to use CU3ER subject to the restrictions defined below. + + * You may use CU3ER in personal and / or commercial projects. + + * You may implement CU3ER in an unlimited number of websites and + offline presentations, as long as you are acting as the administrator + and / or developer for those websites and / or presentations. + + * You may deploy SWFs containing CU3ER as part of hired work for + a third party as long as the SWF is unique to said party and not + replicated / resold / redistributed as part of a template, + application or service to additional parties. + + * SWF containing CU3ER may not be embedded as part of a template, + application, and / or web site where stated template, application, + and/or web site is re-sold and / or re-distributed for independent + use by third parties, without specific prior written permission. + + * SWFs containing CU3ER may not be embedded in a template, content + management system, and / or online web service in a manner where the + SWF is replicated and used as a slideshow viewer for photos contributed + by more than one party. + + * CU3ER may not be sub-licensed or resold. + + * You agree not to decompile, reverse engineer, disassemble, or otherwise + determine or attempt to determine source code for the executable code + of CU3ER, and agrees not to permit or authorize anyone else to do so. + + * CU3ER redistribution must reproduce the above copyright notice, this + list of conditions and the disclaimer in the documentation and/or + other materials provided with the distribution. + + * Neither the name of CU3ER nor the name of it contributor (Stefan Kovac) + may be used to endorse or promote products associated with CU3ER without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY STEFAN KOVAC ''AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL STEFAN KOVAC BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file diff --git a/modules/download/files/MILPACS_RC1_b.zip b/modules/download/files/MILPACS_RC1_b.zip Binary files differnew file mode 100644 index 0000000..24b7dab --- /dev/null +++ b/modules/download/files/MILPACS_RC1_b.zip diff --git a/modules/download/files/MarneMessenger_1-1.pdf b/modules/download/files/MarneMessenger_1-1.pdf Binary files differnew file mode 100644 index 0000000..12bead4 --- /dev/null +++ b/modules/download/files/MarneMessenger_1-1.pdf diff --git a/modules/download/files/MarneMessenger_1-2.pdf b/modules/download/files/MarneMessenger_1-2.pdf Binary files differnew file mode 100644 index 0000000..0090c30 --- /dev/null +++ b/modules/download/files/MarneMessenger_1-2.pdf diff --git a/modules/download/files/MarneMessenger_2-1.pdf b/modules/download/files/MarneMessenger_2-1.pdf Binary files differnew file mode 100644 index 0000000..614e329 --- /dev/null +++ b/modules/download/files/MarneMessenger_2-1.pdf diff --git a/modules/download/files/MarneMessenger_2-2.pdf b/modules/download/files/MarneMessenger_2-2.pdf Binary files differnew file mode 100644 index 0000000..016ccf9 --- /dev/null +++ b/modules/download/files/MarneMessenger_2-2.pdf diff --git a/modules/download/files/Milpacs_RC2.zip b/modules/download/files/Milpacs_RC2.zip Binary files differnew file mode 100644 index 0000000..7546eda --- /dev/null +++ b/modules/download/files/Milpacs_RC2.zip diff --git a/modules/download/index.php b/modules/download/index.php index b819e8d..8cd1d99 100644 --- a/modules/download/index.php +++ b/modules/download/index.php @@ -1,134 +1,134 @@ -<?php
-/**
- * Bayonet Content Management System
- * Copyright (C) 2008 Joseph Hunkeler & Evan O'Connell
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-if(!defined("MODULE_FILE"))
-{
- die("Access denied...");
-}
-
-function getCategoryList()
-{
- global $db;
- $query = sprintf("SELECT category_id, title FROM bayonet_downloads_categories");
- $result = $db->Query($query);
- $categories = $db->Fetch($result);
-
- return $categories;
-}
-
-function getCategoryName($category)
-{
- global $db;
- if(!filter_var($category, FILTER_VALIDATE_INT))
- return array();
-
- $query = sprintf("SELECT category_id, title FROM bayonet_downloads_categories WHERE category_id = %d", (int)$category);
- $result = $db->Query($query);
- $data = $db->FetchRow($result);
-
- return $data['title'];
- //return is_array($data) ? $data : array();
-}
-
-function getCategoryFiles($category)
-{
- global $db;
- $query = sprintf("SELECT ca.category_id, ca.title AS category, dl.name, dl.filename, dl.description FROM bayonet_downloads_categories AS ca LEFT OUTER JOIN bayonet_downloads AS dl ON dl.category_id = ca.category_id WHERE ca.category_id = %d", (int)$category);
-
- $result = $db->Query($query);
- $downloads = $db->FetchArray($result);
- decho('downloads data');
- decho($downloads);
- decho('downloads data done');
-
- return $downloads;
-}
-
-global $db;
-$downloads = NULL;
-$download_relative_path = "modules/" . basename(dirname(__FILE__)) . "/files/";
-$download_absolute_path = dirname(__FILE__) . "/files/";
-
-$category = $_GET['category'];
-if(isset($category) && !filter_var($category, FILTER_VALIDATE_INT))
-{
- ReportHack("Purposely invalid category entry.");
- return;
-}
-
-$downloads = getCategoryFiles($category);
-decho($downloads);
-
-OpenContent();
-echo "<div class=\"contentHeading\">Categories</div>\n";
-echo "<div class=\"content\">\n";
-
-$categoryList = getCategoryList();
-
- foreach($categoryList as $categoryListItem)
- {
- echo "<p>";
- echo LinkModule("download", "&category={$categoryListItem['category_id']}",$categoryListItem['title']);
- echo "</p>\n";
- }
-
-
-echo "</div>\n</div>\n";
-CloseContent();
-
-echo "<br/>"; //spacer between div tags
-
-if(isset($category))
-{
- OpenContent();
- echo "<div class=\"contentHeading\">" . getCategoryName($category) . "</div>\n";
- echo "<div class=\"content\">\n";
-
- OpenContent();
- echo "<div class=\"contentHeading\">Files</div>\n";
- echo "<div class=\"content\">\n";
-
- if(empty($downloads))
- {
- echo "No downloads available.\n";
- return;
- }
-
- foreach($downloads as $file)
- {
- $download_full_path = $download_absolute_path . $file['filename'];
-
- if(!file_exists($download_full_path)) $broken = "(Broken link detected)";
- echo "<p>";
- echo LinkInternal($file['name'], $file['filename'], $download_relative_path) . " $broken<br/>\n";
- echo "<b>Filename:</b> {$file['filename']}<br/>\n";
- printf("<b>Size:</b> %.2fKB<br/>\n", filesize($download_full_path) / 1024);
- echo "<b>MD5 Hash:</b> " . md5_file($download_full_path) . "<br/>\n";
- echo "<b>Description:</b> {$file['description']}<br/>\n";
- echo "</p>";
-
- }
- //logQueueFlush(FORCE);
-
- echo "</div>\n</div>";
- echo "</div>\n</div>";
-}
- CloseContent();
-CloseContent();
-?>
+<?php +/** + * Bayonet Content Management System + * Copyright (C) 2008 Joseph Hunkeler & Evan O'Connell + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +if(!defined("MODULE_FILE")) +{ + die("Access denied..."); +} + +function getCategoryList() +{ + global $db; + $query = sprintf("SELECT category_id, title FROM bayonet_downloads_categories"); + $result = $db->Query($query); + $categories = $db->Fetch($result); + + return $categories; +} + +function getCategoryName($category) +{ + global $db; + if(!filter_var($category, FILTER_VALIDATE_INT)) + return array(); + + $query = sprintf("SELECT category_id, title FROM bayonet_downloads_categories WHERE category_id = %d", (int)$category); + $result = $db->Query($query); + $data = $db->FetchRow($result); + + return $data['title']; + //return is_array($data) ? $data : array(); +} + +function getCategoryFiles($category) +{ + global $db; + $query = sprintf("SELECT ca.category_id, ca.title AS category, dl.name, dl.filename, dl.description FROM bayonet_downloads_categories AS ca LEFT OUTER JOIN bayonet_downloads AS dl ON dl.category_id = ca.category_id WHERE ca.category_id = %d", (int)$category); + + $result = $db->Query($query); + $downloads = $db->FetchArray($result); + decho('downloads data'); + decho($downloads); + decho('downloads data done'); + + return $downloads; +} + +global $db; +$downloads = NULL; +$download_relative_path = "modules/" . basename(dirname(__FILE__)) . "/files/"; +$download_absolute_path = dirname(__FILE__) . "/files/"; + +$category = $_GET['category']; +if(isset($category) && !filter_var($category, FILTER_VALIDATE_INT)) +{ + ReportHack("Purposely invalid category entry."); + return; +} + +$downloads = getCategoryFiles($category); +decho($downloads); + +OpenContent(); +echo "<div class=\"contentHeading\">Categories</div>\n"; +echo "<div class=\"content\">\n"; + +$categoryList = getCategoryList(); + + foreach($categoryList as $categoryListItem) + { + echo "<p>"; + echo LinkModule("download", "&category={$categoryListItem['category_id']}",$categoryListItem['title']); + echo "</p>\n"; + } + + +echo "</div>\n</div>\n"; +CloseContent(); + +echo "<br/>"; //spacer between div tags + +if(isset($category)) +{ + OpenContent(); + echo "<div class=\"contentHeading\">" . getCategoryName($category) . "</div>\n"; + echo "<div class=\"content\">\n"; + + OpenContent(); + echo "<div class=\"contentHeading\">Files</div>\n"; + echo "<div class=\"content\">\n"; + + if(empty($downloads)) + { + echo "No downloads available.\n"; + return; + } + + foreach($downloads as $file) + { + $download_full_path = $download_absolute_path . $file['filename']; + + if(!file_exists($download_full_path)) $broken = "(Broken link detected)"; + echo "<p>"; + echo LinkInternal($file['name'], $file['filename'], $download_relative_path) . " $broken<br/>\n"; + echo "<b>Filename:</b> {$file['filename']}<br/>\n"; + printf("<b>Size:</b> %.2fKB<br/>\n", filesize($download_full_path) / 1024); + echo "<b>MD5 Hash:</b> " . md5_file($download_full_path) . "<br/>\n"; + echo "<b>Description:</b> {$file['description']}<br/>\n"; + echo "</p>"; + + } + //logQueueFlush(FORCE); + + echo "</div>\n</div>"; + echo "</div>\n</div>"; +} + CloseContent(); +CloseContent(); +?> diff --git a/modules/index/index.php b/modules/index/index.php index 54c8dbd..83b542c 100644 --- a/modules/index/index.php +++ b/modules/index/index.php @@ -10,7 +10,7 @@ define('INDEX_MODULE', true); -$result = $db->Query("SELECT `dir_name` FROM `bayonet_modules` ORDER BY `weight` ASC"); +$result = $db->Query("SELECT `dir_name` FROM `bayonet_modules` WHERE `status` = 'Active' ORDER BY `weight` ASC"); $modules = $db->Fetch($result); foreach($modules as $module) { diff --git a/modules/news/functions.php b/modules/news/functions.php index f3505df..67e9b43 100644 --- a/modules/news/functions.php +++ b/modules/news/functions.php @@ -130,10 +130,11 @@ function getNumOfComments($id){ function getNews($id = NULL, $limit = NULL, $index = 0){ global $db; - $query = "SELECT n.news_id, n.title, n.message, n.date, n.category_id, u.username AS author, c.name AS catname, c.image AS catimage ". + $query = "SELECT n.news_id, n.title, n.message, n.date, n.edited, n.category_id, u.username AS author, e.username AS eauthor, c.name AS catname, c.image AS catimage ". "FROM `bayonet_news` AS n ". "INNER JOIN `bayonet_news_categories` AS c ON c.category_id = n.category_id ". - "LEFT OUTER JOIN `mybb_users` AS u ON u.uid = n.author_id "; + "LEFT OUTER JOIN `bayonet_users` AS u ON u.user_id = n.author_id ". + "LEFT OUTER JOIN `bayonet_users` AS e ON e.user_id = n.edited_id "; if(isset($id)){ $query = $query."WHERE n.news_id = '$id' "; }else{ @@ -155,7 +156,7 @@ function getNews($id = NULL, $limit = NULL, $index = 0){ * Function that takes an array of news and displays it as html * @param data - associative array of news from the database */ -function displayNews($data){ +function displayNews($data, $short = false){ date_default_timezone_set("America/New_York"); @@ -182,7 +183,19 @@ function displayNews($data){ </div> <div class="content"> <img src="modules/news/categories/<?php echo $news['catimage']; ?>" alt="<?php echo $news['catname']; ?>" align="right" /> - <?php echo bbcode_format($news['message']); ?> + <?php + if($short) { + echo substr(bbcode_format($news['message']), 0, 1000)."..."; + echo '<br /><br /><a href="?load=news&id='. $news['news_id'] .'">Continue reading.</a>'; + } else { + echo bbcode_format($news['message']); + } + ?> +<?php + if(!is_null($news['eauthor'])){ + echo "<br /><div style=\"text-align:right; font-size: 10px; font-style:italic;\">Last edit: ".date('F j, Y, g:i a T', strtotime($news['edited']))." by ".$news['eauthor']."</div>"; + } +?> </div> <div class="contentFooter"> <table width="100%"> @@ -190,7 +203,7 @@ function displayNews($data){ <td style="text-align:left;"> View Comments: <a href="<?php echo $_SERVER['PHP_SELF']; ?>?load=news&id=<?php echo $news['news_id']; ?>"><?php echo $numComments;?> Comments</a> </td> - <td style="text-align:right;">Posted on: <?php echo date('D M j, Y g:i a T', strtotime($news['date'])); ?></td> + <td style="text-align:right;">Posted: <?php echo date('D F j, Y, g:i a T', strtotime($news['date'])); ?></td> </tr> </table> </div> diff --git a/modules/news/index.php b/modules/news/index.php index 1dfd98a..47688be 100644 --- a/modules/news/index.php +++ b/modules/news/index.php @@ -28,6 +28,7 @@ include 'modules/news/functions.php'; $logged_id = 2; if(!defined('INDEX_MODULE')){ + define('BLOCK_RIGHT_DISABLE', true); $page_num = 1; $page_num = $_GET['page']; //get variable for page number @@ -50,10 +51,11 @@ if(isset($_GET['id'])) } else { - $news = getNews(null, $limit, $index); - displayNews($news); - OpenContent(); + if(defined('INDEX_MODULE')){ + $news = getNews(null, $limit, $index); + displayNews($news, true); + OpenContent(); ?> <div style="float:right;"> <a href="?load=news">Read All</a> @@ -61,6 +63,26 @@ else <?php }else{ + + $news = getNews(null, $limit, $index); + + OpenContent(); + if($page_num > 0) + echo " <a href=\"?load=news&page={$page_num}\">More Recent News</a>"; + if(count($news) == $limit){ +?> + <div style="float:right;"> + <a href="?load=news&page=<?php echo ($page_num+2); ?>">Older News</a> + </div> + <div class="clear"></div> +<?php + } + + CloseContent(); + echo "<br />"; + displayNews($news); + OpenContent(); + if($page_num > 0) echo " <a href=\"?load=news&page={$page_num}\">More Recent News</a>"; diff --git a/modules/newsreel/index.php b/modules/newsreel/index.php index f45f2f5..3caa86b 100644 --- a/modules/newsreel/index.php +++ b/modules/newsreel/index.php @@ -1,6 +1,7 @@ <!-- START News Reel --> <link rel="stylesheet" type="text/css" href="modules/newsreel/style.css" media="screen"/> <?php OpenContent(); ?> +<div class="content" style="padding: 0px; color: white;"> <script type="text/javascript"> var current = "0"; @@ -92,8 +93,10 @@ window.onload = init_Slides; //starts the reels movement </script> -<div class="content1"><div class="content2"> - <img src="modules/newsreel/slides/<?php echo $startSRC; ?>" name="myBanner" alt="newsreel" /> + + <a href="http://www.3rd-infantry-division.org/forums/index.php?board=13.0"><img src="modules/newsreel/slides/<?php echo $startSRC; ?>" name="myBanner" alt="newsreel" style="padding:0px;" /></a> + +</div> <table border="0" cellspacing="0" cellpadding="0" style="height:21px;" width="100%"> <tr> <?php @@ -108,6 +111,6 @@ $y=0; ?> </tr> </table> -</div></div> + <?php CloseContent(); ?> <!-- END News Reel -->
\ No newline at end of file diff --git a/modules/newsreel/slides/agwc3.png b/modules/newsreel/slides/agwc3.png Binary files differnew file mode 100644 index 0000000..7b6f9a7 --- /dev/null +++ b/modules/newsreel/slides/agwc3.png diff --git a/modules/newsreel/slides/arma2.png b/modules/newsreel/slides/arma2.png Binary files differnew file mode 100644 index 0000000..94fab4a --- /dev/null +++ b/modules/newsreel/slides/arma2.png diff --git a/modules/newsreel/slides/decade.png b/modules/newsreel/slides/decade.png Binary files differnew file mode 100644 index 0000000..0ba39aa --- /dev/null +++ b/modules/newsreel/slides/decade.png diff --git a/modules/newsreel/slides/drilltimes.png b/modules/newsreel/slides/drilltimes.png Binary files differnew file mode 100644 index 0000000..497b406 --- /dev/null +++ b/modules/newsreel/slides/drilltimes.png diff --git a/modules/newsreel/slides/holidays.png b/modules/newsreel/slides/holidays.png Binary files differnew file mode 100644 index 0000000..48a1c72 --- /dev/null +++ b/modules/newsreel/slides/holidays.png diff --git a/modules/newsreel/slides/joinus.png b/modules/newsreel/slides/joinus.png Binary files differnew file mode 100644 index 0000000..950a2bc --- /dev/null +++ b/modules/newsreel/slides/joinus.png diff --git a/modules/newsreel/slides/leadership.png b/modules/newsreel/slides/leadership.png Binary files differnew file mode 100644 index 0000000..52730a4 --- /dev/null +++ b/modules/newsreel/slides/leadership.png diff --git a/modules/newsreel/slides/team.png b/modules/newsreel/slides/team.png Binary files differnew file mode 100644 index 0000000..fe307c1 --- /dev/null +++ b/modules/newsreel/slides/team.png diff --git a/modules/newsreel/slides/team2.png b/modules/newsreel/slides/team2.png Binary files differnew file mode 100644 index 0000000..889a266 --- /dev/null +++ b/modules/newsreel/slides/team2.png diff --git a/modules/page/index.php b/modules/page/index.php index 5b943ce..aeba18a 100644 --- a/modules/page/index.php +++ b/modules/page/index.php @@ -18,6 +18,7 @@ */ define("MODULE_FAIL", "You cannot access this module directly.<br/>\n",true); +define('BLOCK_RIGHT_DISABLE', true); if(!defined("MODULE_FILE")) { diff --git a/modules/rudi/header.php b/modules/rudi/header.php index 47c5ffa..7ea6723 100644 --- a/modules/rudi/header.php +++ b/modules/rudi/header.php @@ -1,6 +1,10 @@ -<html> -<head> -<title>RUDI</title> -<!-- <link rel="stylesheet" type="text/css" href="includes/rudi.css" /> --> -</head> -<body> +<?php OpenContent(); ?> +<div class="content" style="text-align:center"> + <div class="inline" style="margin:0px 20px 0px 20px;"><?php echo LinkModule('rudi',NULL,'Roster'); ?></div> + <div class="inline" style="margin:0px 20px 0px 20px;"><?php echo LinkModule('rudi','&show=awards','Awards & Medals'); ?></div> + <div class="inline" style="margin:0px 20px 0px 20px;"><?php echo LinkModule('rudi','&show=weapons','Weapons'); ?></div> + <div class="inline" style="margin:0px 20px 0px 20px;"><?php echo LinkModule('rudi','&show=ranks','Ranks'); ?></div> + <div class="clear"></div> +</div> +<?php CloseContent(); ?> +<br />
\ No newline at end of file diff --git a/modules/rudi/images/medals/CIB_1st.gif b/modules/rudi/images/medals/CIB_1st.gif Binary files differnew file mode 100644 index 0000000..eb218ec --- /dev/null +++ b/modules/rudi/images/medals/CIB_1st.gif diff --git a/modules/rudi/images/medals/CIB_2nd.gif b/modules/rudi/images/medals/CIB_2nd.gif Binary files differnew file mode 100644 index 0000000..d4fd78e --- /dev/null +++ b/modules/rudi/images/medals/CIB_2nd.gif diff --git a/modules/rudi/images/medals/CIB_3rd.gif b/modules/rudi/images/medals/CIB_3rd.gif Binary files differnew file mode 100644 index 0000000..2ddf96a --- /dev/null +++ b/modules/rudi/images/medals/CIB_3rd.gif diff --git a/modules/rudi/images/medals/CoD2.gif b/modules/rudi/images/medals/CoD2.gif Binary files differnew file mode 100644 index 0000000..8e936a0 --- /dev/null +++ b/modules/rudi/images/medals/CoD2.gif diff --git a/modules/rudi/images/medals/CoD2.jpg b/modules/rudi/images/medals/CoD2.jpg Binary files differnew file mode 100644 index 0000000..099ca27 --- /dev/null +++ b/modules/rudi/images/medals/CoD2.jpg diff --git a/modules/rudi/images/medals/DUC.jpg b/modules/rudi/images/medals/DUC.jpg Binary files differnew file mode 100644 index 0000000..566f81b --- /dev/null +++ b/modules/rudi/images/medals/DUC.jpg diff --git a/modules/rudi/images/medals/SM.gif b/modules/rudi/images/medals/SM.gif Binary files differnew file mode 100644 index 0000000..ac59604 --- /dev/null +++ b/modules/rudi/images/medals/SM.gif diff --git a/modules/rudi/images/medals/SS.gif b/modules/rudi/images/medals/SS.gif Binary files differnew file mode 100644 index 0000000..a488adc --- /dev/null +++ b/modules/rudi/images/medals/SS.gif diff --git a/modules/rudi/images/medals/afem.jpg b/modules/rudi/images/medals/afem.jpg Binary files differnew file mode 100644 index 0000000..6b0324c --- /dev/null +++ b/modules/rudi/images/medals/afem.jpg diff --git a/modules/rudi/images/medals/arma2duc.jpg b/modules/rudi/images/medals/arma2duc.jpg Binary files differnew file mode 100644 index 0000000..bf4bfcc --- /dev/null +++ b/modules/rudi/images/medals/arma2duc.jpg diff --git a/modules/rudi/images/medals/cib1.png b/modules/rudi/images/medals/cib1.png Binary files differnew file mode 100644 index 0000000..d96bf80 --- /dev/null +++ b/modules/rudi/images/medals/cib1.png diff --git a/modules/rudi/images/medals/cib2.png b/modules/rudi/images/medals/cib2.png Binary files differnew file mode 100644 index 0000000..ba6f8dd --- /dev/null +++ b/modules/rudi/images/medals/cib2.png diff --git a/modules/rudi/images/medals/cib3.png b/modules/rudi/images/medals/cib3.png Binary files differnew file mode 100644 index 0000000..abc2215 --- /dev/null +++ b/modules/rudi/images/medals/cib3.png diff --git a/modules/rudi/images/medals/cib4.png b/modules/rudi/images/medals/cib4.png Binary files differnew file mode 100644 index 0000000..d511343 --- /dev/null +++ b/modules/rudi/images/medals/cib4.png diff --git a/modules/rudi/images/medals/cod4unitcit.jpg b/modules/rudi/images/medals/cod4unitcit.jpg Binary files differnew file mode 100644 index 0000000..aad4498 --- /dev/null +++ b/modules/rudi/images/medals/cod4unitcit.jpg diff --git a/modules/rudi/images/medals/dsm.jpg b/modules/rudi/images/medals/dsm.jpg Binary files differindex b90e927..7cf0978 100644 --- a/modules/rudi/images/medals/dsm.jpg +++ b/modules/rudi/images/medals/dsm.jpg diff --git a/modules/rudi/images/medals/eib.jpg b/modules/rudi/images/medals/eib.jpg Binary files differnew file mode 100644 index 0000000..e8b5f59 --- /dev/null +++ b/modules/rudi/images/medals/eib.jpg diff --git a/modules/rudi/images/medals/eib.png b/modules/rudi/images/medals/eib.png Binary files differnew file mode 100644 index 0000000..909f057 --- /dev/null +++ b/modules/rudi/images/medals/eib.png diff --git a/modules/rudi/images/medals/expert.gif b/modules/rudi/images/medals/expert.gif Binary files differnew file mode 100644 index 0000000..b00bc76 --- /dev/null +++ b/modules/rudi/images/medals/expert.gif diff --git a/modules/rudi/images/medals/oak_leaf_clusters.gif b/modules/rudi/images/medals/oak_leaf_clusters.gif Binary files differnew file mode 100644 index 0000000..376ef8c --- /dev/null +++ b/modules/rudi/images/medals/oak_leaf_clusters.gif diff --git a/modules/rudi/images/medals/pass.gif b/modules/rudi/images/medals/pass.gif Binary files differnew file mode 100644 index 0000000..58d305f --- /dev/null +++ b/modules/rudi/images/medals/pass.gif diff --git a/modules/rudi/images/medals/sniper_qual.gif b/modules/rudi/images/medals/sniper_qual.gif Binary files differnew file mode 100644 index 0000000..9d51310 --- /dev/null +++ b/modules/rudi/images/medals/sniper_qual.gif diff --git a/modules/rudi/images/medals/sniper_qual.jpg b/modules/rudi/images/medals/sniper_qual.jpg Binary files differnew file mode 100644 index 0000000..1e19720 --- /dev/null +++ b/modules/rudi/images/medals/sniper_qual.jpg diff --git a/modules/rudi/images/medals/success.gif b/modules/rudi/images/medals/success.gif Binary files differnew file mode 100644 index 0000000..d3fca80 --- /dev/null +++ b/modules/rudi/images/medals/success.gif diff --git a/modules/rudi/images/medals/valor_device.gif b/modules/rudi/images/medals/valor_device.gif Binary files differnew file mode 100644 index 0000000..3a68d96 --- /dev/null +++ b/modules/rudi/images/medals/valor_device.gif diff --git a/modules/rudi/images/medals/valor_device.jpg b/modules/rudi/images/medals/valor_device.jpg Binary files differnew file mode 100644 index 0000000..facff6f --- /dev/null +++ b/modules/rudi/images/medals/valor_device.jpg diff --git a/modules/rudi/images/ranks/tiny/1LT.png b/modules/rudi/images/ranks/tiny/1LT.png Binary files differnew file mode 100644 index 0000000..83b6ab1 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/1LT.png diff --git a/modules/rudi/images/ranks/tiny/1SG.png b/modules/rudi/images/ranks/tiny/1SG.png Binary files differnew file mode 100644 index 0000000..4d9e872 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/1SG.png diff --git a/modules/rudi/images/ranks/tiny/2LT.png b/modules/rudi/images/ranks/tiny/2LT.png Binary files differnew file mode 100644 index 0000000..00df3a7 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/2LT.png diff --git a/modules/rudi/images/ranks/tiny/CPL.png b/modules/rudi/images/ranks/tiny/CPL.png Binary files differnew file mode 100644 index 0000000..b9dd559 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/CPL.png diff --git a/modules/rudi/images/ranks/tiny/CPT.png b/modules/rudi/images/ranks/tiny/CPT.png Binary files differnew file mode 100644 index 0000000..2c83daf --- /dev/null +++ b/modules/rudi/images/ranks/tiny/CPT.png diff --git a/modules/rudi/images/ranks/tiny/CW2.png b/modules/rudi/images/ranks/tiny/CW2.png Binary files differnew file mode 100644 index 0000000..43367ae --- /dev/null +++ b/modules/rudi/images/ranks/tiny/CW2.png diff --git a/modules/rudi/images/ranks/tiny/CW3.png b/modules/rudi/images/ranks/tiny/CW3.png Binary files differnew file mode 100644 index 0000000..7ec90e4 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/CW3.png diff --git a/modules/rudi/images/ranks/tiny/CW4.png b/modules/rudi/images/ranks/tiny/CW4.png Binary files differnew file mode 100644 index 0000000..91db1a3 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/CW4.png diff --git a/modules/rudi/images/ranks/tiny/LTC.png b/modules/rudi/images/ranks/tiny/LTC.png Binary files differnew file mode 100644 index 0000000..5a82ff1 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/LTC.png diff --git a/modules/rudi/images/ranks/tiny/MSG.png b/modules/rudi/images/ranks/tiny/MSG.png Binary files differnew file mode 100644 index 0000000..d045260 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/MSG.png diff --git a/modules/rudi/images/ranks/tiny/PFC.png b/modules/rudi/images/ranks/tiny/PFC.png Binary files differnew file mode 100644 index 0000000..cf7e41b --- /dev/null +++ b/modules/rudi/images/ranks/tiny/PFC.png diff --git a/modules/rudi/images/ranks/tiny/PV2.png b/modules/rudi/images/ranks/tiny/PV2.png Binary files differnew file mode 100644 index 0000000..6e2fa3c --- /dev/null +++ b/modules/rudi/images/ranks/tiny/PV2.png diff --git a/modules/rudi/images/ranks/tiny/SFC.png b/modules/rudi/images/ranks/tiny/SFC.png Binary files differnew file mode 100644 index 0000000..ec74e80 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/SFC.png diff --git a/modules/rudi/images/ranks/tiny/SGT.png b/modules/rudi/images/ranks/tiny/SGT.png Binary files differnew file mode 100644 index 0000000..fe5e441 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/SGT.png diff --git a/modules/rudi/images/ranks/tiny/SPC.png b/modules/rudi/images/ranks/tiny/SPC.png Binary files differnew file mode 100644 index 0000000..1d991f3 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/SPC.png diff --git a/modules/rudi/images/ranks/tiny/SSG.png b/modules/rudi/images/ranks/tiny/SSG.png Binary files differnew file mode 100644 index 0000000..956951e --- /dev/null +++ b/modules/rudi/images/ranks/tiny/SSG.png diff --git a/modules/rudi/images/ranks/tiny/WO1.png b/modules/rudi/images/ranks/tiny/WO1.png Binary files differnew file mode 100644 index 0000000..eb6f347 --- /dev/null +++ b/modules/rudi/images/ranks/tiny/WO1.png diff --git a/modules/rudi/images/uniform/ACoia.png b/modules/rudi/images/uniform/ACoia.png Binary files differindex 0e70357..e22cdd2 100644 --- a/modules/rudi/images/uniform/ACoia.png +++ b/modules/rudi/images/uniform/ACoia.png diff --git a/modules/rudi/images/uniform/ACourter.png b/modules/rudi/images/uniform/ACourter.png Binary files differnew file mode 100644 index 0000000..c422930 --- /dev/null +++ b/modules/rudi/images/uniform/ACourter.png diff --git a/modules/rudi/images/uniform/ADodge.png b/modules/rudi/images/uniform/ADodge.png Binary files differnew file mode 100644 index 0000000..77c9526 --- /dev/null +++ b/modules/rudi/images/uniform/ADodge.png diff --git a/modules/rudi/images/uniform/AHernandez.png b/modules/rudi/images/uniform/AHernandez.png Binary files differnew file mode 100644 index 0000000..c118b76 --- /dev/null +++ b/modules/rudi/images/uniform/AHernandez.png diff --git a/modules/rudi/images/uniform/AKlassen.png b/modules/rudi/images/uniform/AKlassen.png Binary files differnew file mode 100644 index 0000000..7051ae2 --- /dev/null +++ b/modules/rudi/images/uniform/AKlassen.png diff --git a/modules/rudi/images/uniform/ASherman.png b/modules/rudi/images/uniform/ASherman.png Binary files differnew file mode 100644 index 0000000..57facd0 --- /dev/null +++ b/modules/rudi/images/uniform/ASherman.png diff --git a/modules/rudi/images/uniform/AZanesco.png b/modules/rudi/images/uniform/AZanesco.png Binary files differnew file mode 100644 index 0000000..e38c659 --- /dev/null +++ b/modules/rudi/images/uniform/AZanesco.png diff --git a/modules/rudi/images/uniform/BMorgan.png b/modules/rudi/images/uniform/BMorgan.png Binary files differnew file mode 100644 index 0000000..010bac0 --- /dev/null +++ b/modules/rudi/images/uniform/BMorgan.png diff --git a/modules/rudi/images/uniform/BSegal.png b/modules/rudi/images/uniform/BSegal.png Binary files differindex 1c9c0f2..0428ed2 100644 --- a/modules/rudi/images/uniform/BSegal.png +++ b/modules/rudi/images/uniform/BSegal.png diff --git a/modules/rudi/images/uniform/BWhiting.png b/modules/rudi/images/uniform/BWhiting.png Binary files differnew file mode 100644 index 0000000..f9e754e --- /dev/null +++ b/modules/rudi/images/uniform/BWhiting.png diff --git a/modules/rudi/images/uniform/DHolson.png b/modules/rudi/images/uniform/DHolson.png Binary files differindex b372cf5..91b5e9e 100644 --- a/modules/rudi/images/uniform/DHolson.png +++ b/modules/rudi/images/uniform/DHolson.png diff --git a/modules/rudi/images/uniform/DKillian.png b/modules/rudi/images/uniform/DKillian.png Binary files differnew file mode 100644 index 0000000..eb6cb67 --- /dev/null +++ b/modules/rudi/images/uniform/DKillian.png diff --git a/modules/rudi/images/uniform/EOConnell.png b/modules/rudi/images/uniform/EOConnell.png Binary files differindex 9e46bfd..f9fd55d 100644 --- a/modules/rudi/images/uniform/EOConnell.png +++ b/modules/rudi/images/uniform/EOConnell.png diff --git a/modules/rudi/images/uniform/GTownsend.png b/modules/rudi/images/uniform/GTownsend.png Binary files differindex 6d6f314..b3e6c0b 100644 --- a/modules/rudi/images/uniform/GTownsend.png +++ b/modules/rudi/images/uniform/GTownsend.png diff --git a/modules/rudi/images/uniform/INewton.png b/modules/rudi/images/uniform/INewton.png Binary files differnew file mode 100644 index 0000000..02aa620 --- /dev/null +++ b/modules/rudi/images/uniform/INewton.png diff --git a/modules/rudi/images/uniform/JCiciotti.png b/modules/rudi/images/uniform/JCiciotti.png Binary files differnew file mode 100644 index 0000000..29b5722 --- /dev/null +++ b/modules/rudi/images/uniform/JCiciotti.png diff --git a/modules/rudi/images/uniform/JHiggins.jpg b/modules/rudi/images/uniform/JHiggins.jpg Binary files differnew file mode 100644 index 0000000..122bd3c --- /dev/null +++ b/modules/rudi/images/uniform/JHiggins.jpg diff --git a/modules/rudi/images/uniform/JHiggins.png b/modules/rudi/images/uniform/JHiggins.png Binary files differnew file mode 100644 index 0000000..c468434 --- /dev/null +++ b/modules/rudi/images/uniform/JHiggins.png diff --git a/modules/rudi/images/uniform/JMagers.png b/modules/rudi/images/uniform/JMagers.png Binary files differnew file mode 100644 index 0000000..aaeeb0e --- /dev/null +++ b/modules/rudi/images/uniform/JMagers.png diff --git a/modules/rudi/images/uniform/JMelnyk.png b/modules/rudi/images/uniform/JMelnyk.png Binary files differindex 111291c..8f7178f 100644 --- a/modules/rudi/images/uniform/JMelnyk.png +++ b/modules/rudi/images/uniform/JMelnyk.png diff --git a/modules/rudi/images/uniform/JMervau.png b/modules/rudi/images/uniform/JMervau.png Binary files differnew file mode 100644 index 0000000..d7d80bc --- /dev/null +++ b/modules/rudi/images/uniform/JMervau.png diff --git a/modules/rudi/images/uniform/JSchroeder.png b/modules/rudi/images/uniform/JSchroeder.png Binary files differnew file mode 100644 index 0000000..7556027 --- /dev/null +++ b/modules/rudi/images/uniform/JSchroeder.png diff --git a/modules/rudi/images/uniform/KGrimes.png b/modules/rudi/images/uniform/KGrimes.png Binary files differindex db03b87..35aa4cb 100644 --- a/modules/rudi/images/uniform/KGrimes.png +++ b/modules/rudi/images/uniform/KGrimes.png diff --git a/modules/rudi/images/uniform/KOlson.png b/modules/rudi/images/uniform/KOlson.png Binary files differnew file mode 100644 index 0000000..89e7f00 --- /dev/null +++ b/modules/rudi/images/uniform/KOlson.png diff --git a/modules/rudi/images/uniform/LTrimble.png b/modules/rudi/images/uniform/LTrimble.png Binary files differindex 3d8f2b6..3ec56da 100644 --- a/modules/rudi/images/uniform/LTrimble.png +++ b/modules/rudi/images/uniform/LTrimble.png diff --git a/modules/rudi/images/uniform/MAbballe.png b/modules/rudi/images/uniform/MAbballe.png Binary files differnew file mode 100644 index 0000000..596d551 --- /dev/null +++ b/modules/rudi/images/uniform/MAbballe.png diff --git a/modules/rudi/images/uniform/MCampeau.png b/modules/rudi/images/uniform/MCampeau.png Binary files differnew file mode 100644 index 0000000..c5711b7 --- /dev/null +++ b/modules/rudi/images/uniform/MCampeau.png diff --git a/modules/rudi/images/uniform/MLula.png b/modules/rudi/images/uniform/MLula.png Binary files differindex a674bc2..2b7feb0 100644 --- a/modules/rudi/images/uniform/MLula.png +++ b/modules/rudi/images/uniform/MLula.png diff --git a/modules/rudi/images/uniform/MMark.png b/modules/rudi/images/uniform/MMark.png Binary files differindex ed5ae93..063d1f8 100644 --- a/modules/rudi/images/uniform/MMark.png +++ b/modules/rudi/images/uniform/MMark.png diff --git a/modules/rudi/images/uniform/PBurris.png b/modules/rudi/images/uniform/PBurris.png Binary files differindex f64736d..c3546fd 100644 --- a/modules/rudi/images/uniform/PBurris.png +++ b/modules/rudi/images/uniform/PBurris.png diff --git a/modules/rudi/images/uniform/PPederson.png b/modules/rudi/images/uniform/PPederson.png Binary files differindex c5743f9..33b98be 100644 --- a/modules/rudi/images/uniform/PPederson.png +++ b/modules/rudi/images/uniform/PPederson.png diff --git a/modules/rudi/images/uniform/PRadziwonowicz.png b/modules/rudi/images/uniform/PRadziwonowicz.png Binary files differnew file mode 100644 index 0000000..46e60f4 --- /dev/null +++ b/modules/rudi/images/uniform/PRadziwonowicz.png diff --git a/modules/rudi/images/uniform/RECRUIT.png b/modules/rudi/images/uniform/RECRUIT.png Binary files differnew file mode 100644 index 0000000..3f9a97b --- /dev/null +++ b/modules/rudi/images/uniform/RECRUIT.png diff --git a/modules/rudi/images/uniform/RLeahy.png b/modules/rudi/images/uniform/RLeahy.png Binary files differindex 1c36abf..99d0c0d 100644 --- a/modules/rudi/images/uniform/RLeahy.png +++ b/modules/rudi/images/uniform/RLeahy.png diff --git a/modules/rudi/images/uniform/RStewart.png b/modules/rudi/images/uniform/RStewart.png Binary files differnew file mode 100644 index 0000000..a1c4e8a --- /dev/null +++ b/modules/rudi/images/uniform/RStewart.png diff --git a/modules/rudi/images/uniform/SCorsaro.png b/modules/rudi/images/uniform/SCorsaro.png Binary files differindex 1895adf..33373cf 100644 --- a/modules/rudi/images/uniform/SCorsaro.png +++ b/modules/rudi/images/uniform/SCorsaro.png diff --git a/modules/rudi/images/uniform/SDayton.png b/modules/rudi/images/uniform/SDayton.png Binary files differnew file mode 100644 index 0000000..8638b96 --- /dev/null +++ b/modules/rudi/images/uniform/SDayton.png diff --git a/modules/rudi/images/uniform/TKleiber.png b/modules/rudi/images/uniform/TKleiber.png Binary files differnew file mode 100644 index 0000000..27ed4b5 --- /dev/null +++ b/modules/rudi/images/uniform/TKleiber.png diff --git a/modules/rudi/images/uniform/TMichaels.png b/modules/rudi/images/uniform/TMichaels.png Binary files differnew file mode 100644 index 0000000..4935871 --- /dev/null +++ b/modules/rudi/images/uniform/TMichaels.png diff --git a/modules/rudi/images/uniform/TMoore.png b/modules/rudi/images/uniform/TMoore.png Binary files differnew file mode 100644 index 0000000..eceda1e --- /dev/null +++ b/modules/rudi/images/uniform/TMoore.png diff --git a/modules/rudi/images/uniform/ZBarrett.png b/modules/rudi/images/uniform/ZBarrett.png Binary files differindex c9d106b..1954d8f 100644 --- a/modules/rudi/images/uniform/ZBarrett.png +++ b/modules/rudi/images/uniform/ZBarrett.png diff --git a/modules/rudi/includes/common.class.php b/modules/rudi/includes/common.class.php index 2112853..0d5e63e 100644 --- a/modules/rudi/includes/common.class.php +++ b/modules/rudi/includes/common.class.php @@ -2,6 +2,7 @@ define('RUDI_PROFILE_SMALL', true); define('RUDI_PROFILE_BIG', false); +define('RUDI_ROSTER_RESERVES', 12); class Soldier { @@ -444,21 +445,61 @@ class RUDI_Common */ protected function getCombatRecord($member_id) { + $data = NULL; $query = sprintf( - "SELECT c.date, c.status, u1.name, u1.website, u.war_id " + "SELECT s.title, s.date, s.status, u1.name, u1.website, s.war_id, s.home_score, s.visit_score " ."FROM rudi_combat_record AS c " - ."RIGHT OUTER JOIN rudi_war_stats AS u ON u.visit_unit_id = c.visitor_id " - ."RIGHT OUTER JOIN rudi_war_units AS u1 ON u1.name " - ."LEFT OUTER JOIN rudi_unit_members AS m ON m.member_id = c.member_id " - ."WHERE c.member_id = %d ORDER BY c.date DESC ", + ."RIGHT OUTER JOIN rudi_war_stats AS s ON s.war_id = c.war_id " + ."RIGHT OUTER JOIN rudi_war_units AS u1 ON u1.visitor_id = s.visit_unit_id " + ."WHERE c.member_id = %d ORDER BY s.date DESC ", (int)$member_id); $result = $this->db->Query($query); + $data = $this->db->FetchObject($result,'CombatRecord'); return $data; } + + /** + * RUDI_Common::getUnitArr() + * + * @param member_id $mID + * @return an array of the member's units orders from Team - Unit with name, id, & leader + */ + function getUnitArr($mID){ + $unitArr = array(); + + $result = $this->db->Query("SELECT * FROM `rudi_unit_members` WHERE `member_id` = $mID LIMIT 1"); + $member = $this->db->FetchRow($result); + $curUnit = $member['cunit_id']; + + $i = 0; + + $subOf = $curUnit; + while($subOf != 0){ + $unitID = $subOf; + $result = $this->db->Query("SELECT * FROM `rudi_combat_units` WHERE `unit_id` = $subOf LIMIT 1"); + $data = $this->db->fetch($result); + foreach($data as $units){ + $subOf = $units['detachment']; + $leader = $units['leader_id']; + $name = $units['name']; + } + + $unitArr[$i]['unit_id'] = $unitID; + $unitArr[$i]['leader_id'] = $leader; + $unitArr[$i]['name'] = $name; + + + // echo "Unit ID: ".$unitArr[$i]['unit_id']."<br />Name: ".$unitArr[$i]['name']."<br />Leader ID: ".$unitArr[$i]['leader_id']."<br /><br />"; + + $i++; + } + + return array_reverse($unitArr); + } /** * RUDI_Core::getSuperiorUnit() @@ -557,6 +598,7 @@ class RUDI_Common protected function getSuperiorTrue($id) { $superior =& $this->data[$id]->superior; //Reference only the data we need to use + $name =& $this->data[$id]->name; $leader = NULL; //Set the return value to null @@ -577,6 +619,48 @@ class RUDI_Common return $leader; } + /** + * RUDI_Core::getSuperior($unit_id) + * + * @param mixed $unit_id + * @return + */ + protected function getSuperior($id) + { + $leader = NULL; + $unit_id = $this->data[$id]->unit_id; + + $result = $this->db->Query("SELECT `leader_id`, `detachment` FROM `rudi_combat_units` WHERE `unit_id` = '$unit_id' LIMIT 1"); + $row = $this->db->FetchRow($result); + + $detachment = $row['detachment']; + $leader_id = $row['leader_id']; + if($leader_id == $id){ + $leader_id = 0; + } + while($leader_id == 0){ + if($detachment == 0){ + break; + } + $result = $this->db->Query("SELECT `leader_id`, `detachment` FROM `rudi_combat_units` WHERE `unit_id` = '$detachment' LIMIT 1"); + $row = $this->db->FetchRow($result); + $detachment = $row['detachment']; + $leader_id = $row['leader_id']; + } + + if($leader_id != 0){ + $result = $this->db->Query("SELECT CONCAT(r.shortname, ' ', m.last_name) AS name FROM rudi_unit_members AS m LEFT OUTER JOIN rudi_ranks AS r ON r.rank_id = m.rank_id WHERE m.member_id = '$leader_id' LIMIT 1"); + $row = $this->db->FetchRow($result); + + $leader->name = $row['name']; + $leader->leader_id = $leader_id; + } + + return $leader; + } + + + /** * RUDI_Core::getUnit() * @@ -667,17 +751,34 @@ class RUDI_Common * @param int $leader_id */ public function printRoster($unit_id, $leader_id){ + $num = 0; foreach($this->data as $member){ - if($member->unit_id == $unit_id && $member->status_id < 4){ -?> - <tr> + if($member->unit_id == $unit_id && $member->status_id < 3){ + decho($member); + if($num%2==0){ + echo "<tr>"; + } + else { + echo '<tr class="high">'; + } + ?> <!-- Rank --> - <td class="roster"><img src="<?php echo "modules/rudi/images/ranks/small/{$member->rank_short}.png"; ?>" alt="<?php echo $member->rank_short; ?>" /></td> + <td class="roster"> + <?php + if(file_exists("modules/rudi/images/ranks/tiny/{$member->rank_short}.png")){ + echo "<img src=\"modules/rudi/images/ranks/tiny/{$member->rank_short}.png\" alt=\"{$member->rank_short}\" />"; + }else{ + //echo $member->rank_short; + } + ?> + </td> <!-- Name --> - <td class="roster"><a class="rudi_roster" href="?load=rudi&profile=<?php echo $member->member_id ?>"><?php echo $member->last_name . ', ' . $member->first_name; ?></a></td> + <td class="roster"><a class="rosterlink" href="?load=rudi&profile=<?php echo $member->member_id ?>"><?php echo $member->rank_long . ' ' . $member->first_name . ' ' . $member->last_name; ?></a></td> <!-- Roles --> <td class="roster"> + <?php echo $member->role_name; ?> <?php + /* decho(count($member->Roles) . ' roles attached to: ' . $member->last_name); for($role = 0; $role < count($member->Roles); ++$role) { @@ -688,9 +789,9 @@ class RUDI_Common echo $member->Roles[$role]->role_name; if($role < count($member->Roles) - 1) echo ', '; - echo ' '; + //echo ' '; } - } + } */ ?> </td> <!-- Weapon --> @@ -698,10 +799,135 @@ class RUDI_Common <!-- Status --> <td class="roster"><?php echo $member->status; ?></td> </tr> -<?php - } +<?php $num++; + } + } - } + } + + /** + * RUDI_Core::printReserves() + * + */ + public function printReserves(){ + $num = 0; + foreach($this->data as $member){ + if($member->status_id == 3 || $member->unit_id == RUDI_ROSTER_RESERVES){ + decho($member); + + if($num == 0) + echo "<tr><th colspan=\"5\">Reserves</th></tr>"; + + if($num%2==0){ + echo "<tr>"; + } + else { + echo '<tr class="high">'; + } + ?> + <!-- Rank --> + <td class="roster"> + <?php + if(file_exists("modules/rudi/images/ranks/tiny/{$member->rank_short}.png")){ + echo "<img src=\"modules/rudi/images/ranks/tiny/{$member->rank_short}.png\" alt=\"{$member->rank_short}\" />"; + }else{ + //echo $member->rank_short; + } + ?> + </td> + <!-- Name --> + <td class="roster"><a class="rosterlink" href="?load=rudi&profile=<?php echo $member->member_id ?>"><?php echo $member->rank_long . ' ' . $member->first_name . ' ' . $member->last_name; ?></a></td> + <!-- Roles --> + <td class="roster"> + <?php echo $member->role_name; ?> + <?php + /* + decho(count($member->Roles) . ' roles attached to: ' . $member->last_name); + for($role = 0; $role < count($member->Roles); ++$role) + { + if($member->Roles[$role]->role_name) + { + //decho($role . " = (" . $member->Roles[$role]->role_name . ")"); + + echo $member->Roles[$role]->role_name; + if($role < count($member->Roles) - 1) echo ', '; + + //echo ' '; + } + } */ + ?> + </td> + <!-- Weapon --> + <td class="roster"><?php echo $member->weapon_model; ?></td> + <!-- Status --> + <td class="roster"><?php echo $member->status; ?></td> + </tr> +<?php $num++; + } + + } + } + + /** + * RUDI_Core::printPastRoster() + * + */ + public function printPastRoster(){ + decho($this->data); + $num=0; + foreach($this->data as $member){ + if($member->status_id >= 4){ + decho($member); +?> +<?php if($num%2==0){ + echo "<tr>"; + } + else { + echo '<tr class="high">'; + } + ?> + <!-- Rank --> + <td class="roster"> +<?php + if(file_exists("modules/rudi/images/ranks/tiny/{$member->rank_short}.png")){ + echo "<img src=\"modules/rudi/images/ranks/tiny/{$member->rank_short}.png\" alt=\"{$member->rank_short}\" />"; + }else{ + //echo $member->rank_short; + } +?> + </td> + <!-- Name --> + <td><a class="rosterlink" href="?load=rudi&profile=<?php echo $member->member_id ?>"><?php echo $member->rank_long . ' ' . $member->first_name . ' ' . $member->last_name; ?></a></td> + <!-- Roles --> + <td class="roster"> + <?php echo $member->role_name; ?> +<?php + /* decho(count($member->Roles) . ' roles attached to: ' . $member->last_name); + for($role = 0; $role < count($member->Roles); ++$role) + { + if($member->Roles[$role]->role_name) + { + //decho($role . " = (" . $member->Roles[$role]->role_name . ")"); + + echo $member->Roles[$role]->role_name; + if($role < count($member->Roles) - 1) echo ', '; + + //echo ' '; + } + } */ +?> + </td> + <!-- Weapon --> + <td class="roster"><?php echo $this->getDiffTime($member->date_enlisted, $member->date_discharged); ?></td> + <!-- Status --> + <td class="roster"><?php echo $member->status; ?></td> + </tr> +<?php + $num++; + } + + } + } /** * RUDI_Core::displayUnitsRec() * @@ -711,8 +937,13 @@ class RUDI_Common $result = $this->db->Query("SELECT * FROM `rudi_combat_units` WHERE `detachment` = '$unit_id' ORDER BY `weight`"); $row = $this->db->FetchObject($result,'UnitInfo'); foreach($row as $unit){ - echo "<tr><th colspan=\"5\">{$unit->name} : {$unit->callsign}</th></tr>"; - $this->printRoster($unit->unit_id, $unit->leader_id); + $num = 0; + $check = $this->db->Query("SELECT `member_id` FROM `rudi_unit_members` WHERE `cunit_id` = '$unit->unit_id' AND `date_discharged` IS NULL LIMIT 1"); + $num = $this->db->Rows($check); + if($num >= 1 && $unit->unit_id != RUDI_ROSTER_RESERVES){ + echo "<tr><th colspan=\"5\">{$unit->name} : {$unit->callsign}</th></tr>"; + $this->printRoster($unit->unit_id, $unit->leader_id); + } $this->displayUnitsRec($unit->unit_id); } } @@ -742,6 +973,9 @@ class RUDI_Common ."m.location_city, " ."m.location_province, " ."m.primary_mos, " + ."m.points, " + ."m.drillcount, " + ."m.attendcount, " ."r.rank_id, " ."r.image AS rank_image, " ."r.longname AS rank_long, " @@ -759,9 +993,14 @@ class RUDI_Common ."t.team_id, " ."t.name AS team_name, " ."t.leader_id AS team_leader_id, " + ."ro.role_id, " + ."ro.name AS role_name, " ."w.weapon_id, " ."w.manufacturer AS weapon_manufacturer, " ."w.model AS weapon_model, " + ."w2.weapon_id, " + ."w2.manufacturer AS weapon2_manufacturer, " + ."w2.model AS weapon2_model, " ."co.country_id, " ."co.name AS country_name, " ."co.image AS country_image, " @@ -780,7 +1019,9 @@ class RUDI_Common ."FROM rudi_unit_members AS m " ."LEFT OUTER JOIN rudi_weapons AS w ON w.weapon_id = m.weapon_id " - ."LEFT OUTER JOIN rudi_units AS u ON u.unit_id = m.unit_id " + ."LEFT OUTER JOIN rudi_weapons AS w2 ON w2.weapon_id = m.weapon2_id " + ."LEFT OUTER JOIN rudi_roles AS ro ON ro.role_id = m.role_id " + ."LEFT OUTER JOIN rudi_combat_units AS u ON u.unit_id = m.cunit_id " ."LEFT OUTER JOIN rudi_squads AS s ON s.squad_id = m.squad_id " ."LEFT OUTER JOIN rudi_teams AS t ON t.team_id = m.team_id " ."LEFT OUTER JOIN rudi_platoons AS p ON p.platoon_id = m.platoon_id " @@ -799,6 +1040,7 @@ class RUDI_Common ."m.status_id, " ."m.date_promotion, " ."m.date_enlisted, " + ."m.date_discharged, " ."m.primary_mos, " ."r.rank_id, " ."r.image AS rank_image, " @@ -816,6 +1058,8 @@ class RUDI_Common ."st.status_id, " ."t.team_id, " ."t.name AS team_name, " + ."ro.role_id, " + ."ro.name AS role_name, " ."w.weapon_id, " ."w.manufacturer AS weapon_manufacturer, " ."w.model AS weapon_model, " @@ -825,6 +1069,7 @@ class RUDI_Common ."FROM rudi_unit_members AS m " ."LEFT OUTER JOIN rudi_weapons AS w ON w.weapon_id = m.weapon_id " + ."LEFT OUTER JOIN rudi_roles AS ro ON ro.role_id = m.role_id " ."LEFT OUTER JOIN rudi_combat_units AS u ON u.unit_id = m.cunit_id " ."LEFT OUTER JOIN rudi_squads AS s ON s.squad_id = m.squad_id " ."LEFT OUTER JOIN rudi_teams AS t ON t.team_id = m.team_id " @@ -848,22 +1093,24 @@ class RUDI_Common { $count = $member->member_id; $this->data[$member->member_id] = $member; - $this->data[$count]->Roles = $this->getRoles($member->member_id,$member->rank_id); + /* $this->data[$count]->Roles = $this->getRoles($member->member_id,$member->rank_id); if(is_object($this->data[$count]->Roles)) { $this->data[$count]->Roles = array((object)$nothing); - } + } */ if($query_t != RUDI_PROFILE_SMALL) { $this->data[$count]->service_record = $this->getServiceRecord($member->member_id); $this->data[$count]->award_record = $this->getAwardRecord($member->member_id); $this->data[$count]->combat_record = $this->getCombatRecord($member->member_id); - $this->data[$count]->superior->unit = $this->getSuperiorUnit($member->unit_id); + //$this->data[$count]->superior_next = $this->getSuperiorTrue($member->member_id); + $this->data[$count]->superior = $this->getSuperior($member->member_id); + $this->data[$count]->superior->unit = $this->getSuperiorUnit($member->unit_id); $this->data[$count]->superior->platoon = $this->getSuperiorPlatoon($member->platoon_id); $this->data[$count]->superior->squad = $this->getSuperiorSquad($member->squad_id); $this->data[$count]->superior->team = $this->getSuperiorTeam($member->team_id); - $this->data[$count]->superior_next = $this->getSuperiorTrue($member->member_id); + $this->data[$count]->superior_next = $this->getSuperiorTrue($member->member_id); } $count++; } @@ -876,7 +1123,7 @@ class RUDI_Common $query = "SELECT a.award_id, a.image, a.name, a.description, a.class_id, c.name AS class_name " ."FROM rudi_awards AS a " ."LEFT OUTER JOIN rudi_award_classes AS c ON c.class_id = a.class_id " - ."ORDER BY c.class_id, a.award_id ASC"; + ."ORDER BY a.weight, c.class_id, a.award_id ASC"; $result = $this->db->Query($query); $row = $this->db->FetchObject($result,'Award'); return $row; @@ -890,6 +1137,16 @@ class RUDI_Common return $row; } + protected function getWeapons($order = "") + { + $query = "SELECT weapon_id, manufacturer, model, role, caliber FROM rudi_weapons"; + $query = $query ." ". $order; + $result = $this->db->Query($query); + $row = $this->db->Fetch($result); + return $row; + } + + protected function getRanks() { $query = "SELECT rank_id, shortname, longname, image FROM rudi_ranks WHERE active = 1 ORDER BY weight DESC"; diff --git a/modules/rudi/includes/information.class.php b/modules/rudi/includes/information.class.php index 2632675..d34c4aa 100644 --- a/modules/rudi/includes/information.class.php +++ b/modules/rudi/includes/information.class.php @@ -1,34 +1,34 @@ -<?php
-
-class RUDI_Information extends RUDI_Common
-{
- public function __construct()
- {
- global $db;
- $this->db = $db;
- }
-
- public function Unit($unit_id)
- {
- $query = sprintf("SELECT leader_id, name, logo, url, creed, bio
- FROM rudi_units
- WHERE unit_id = %d", (int)$unit_id);
- $result = $this->db->Query($query);
- $unit = $this->db->FetchObject($result, 'UnitInfo', true);
- return $unit;
- }
-
- public function Platoon($unit_id, $platoon_id)
- {
- $query = sprintf("SELECT leader_id, name, logo, creed, bio
- FROM rudi_platoons
- WHERE unit_id = %d AND platoon_id = %d", (int)$unit_id, (int)$platoon_id);
- $result = $this->db->Query($query);
- $platoon = $this->db->FetchObject($result, 'UnitInfo', true);
- decho($platoon);
-
- return $platoon;
- }
-}
-
+<?php + +class RUDI_Information extends RUDI_Common +{ + public function __construct() + { + global $db; + $this->db = $db; + } + + public function Unit($unit_id) + { + $query = sprintf("SELECT leader_id, name, logo, url, creed, bio + FROM rudi_units + WHERE unit_id = %d", (int)$unit_id); + $result = $this->db->Query($query); + $unit = $this->db->FetchObject($result, 'UnitInfo', true); + return $unit; + } + + public function Platoon($unit_id, $platoon_id) + { + $query = sprintf("SELECT leader_id, name, logo, creed, bio + FROM rudi_platoons + WHERE unit_id = %d AND platoon_id = %d", (int)$unit_id, (int)$platoon_id); + $result = $this->db->Query($query); + $platoon = $this->db->FetchObject($result, 'UnitInfo', true); + decho($platoon); + + return $platoon; + } +} + ?>
\ No newline at end of file diff --git a/modules/rudi/includes/rudi.css b/modules/rudi/includes/rudi.css index 8c4ebf2..1eececd 100644 --- a/modules/rudi/includes/rudi.css +++ b/modules/rudi/includes/rudi.css @@ -1,25 +1,22 @@ -table.rudi { - /* background: green; */ -} /* -table{ +table.rudi{ border:1px solid #000; } -tr{ +table.rudi tr{ border:1px solid #000; } -th{ +table.rudi th{ padding:5px; border:1px solid #000; -} +} -td{ +table.rudi td{ text-align:center; padding:2px; border:1px solid #000; -} */ +}*/ table.rudi td.data{ text-align:left; @@ -36,17 +33,19 @@ table.rudi th { table.rudi td { text-align:center; vertical-align: middle; - /* border: 1px solid #a1a1a1; */ + /*border: 1px solid #a1a1a1;*/ } -table.rudi td.roster { + +/*table.rudi td.roster { text-align:center; vertical-align: middle; border: 1px solid #a1a1a1; -} + height: 40px; +}*/ table.rudi th.header { - /* table has a 5px padding so everything is 10px bigger than these values */ + /*table has a 5px padding so everything is 10px bigger than these values*/ width:100px; height:19px; color: #FFF; @@ -54,7 +53,8 @@ table.rudi th.header { border: 1px solid #666; font-family: arial, helvetica, sans-serif; font-size:12px; -} +} + table.rudi td.info { color: #333; @@ -64,8 +64,54 @@ table.rudi td.info { border: 1px solid #666; font-family: arial, helvetica, sans-serif; font-size:12px; -} +} #thin { border:1px outset #333; } + + table.rudiroster { + font-family: verdana; + font-size: 10px; + width: 850px; + text-align: center; + color: #2c2921; + /*background-color: #b0aea2;*/ + background-color: #6b675c; + } + + .rudiroster th { + background-color: #575551; + color: white; + } + .rudiroster td { + font-size: 10px; + height: 25px; + } + .rudiroster tr { + height: 25px; + /*background-color: #78756c;*/ + background-color: #d6d6d6; + } + .rudiroster tr.unfilled { + background-color: #7e7e7e; + color: #9d9d9d; + } + table.rudiroster td img { + padding:0px; + } + + tr.null { + height: 10px; + } + + .rudiroster tr.high { + /* background-color: #898577; */ + background-color: #e4e6e8; + } + + a.rosterlink, a.rosterlink:hover, a.rosterlink:visited { + font-size: 10px; + color: #2c2921; + text-decoration: none; + }
\ No newline at end of file diff --git a/modules/rudi/index.php b/modules/rudi/index.php index 995c90d..4550ad7 100644 --- a/modules/rudi/index.php +++ b/modules/rudi/index.php @@ -1,11 +1,14 @@ <link rel="stylesheet" type="text/css" href="modules/rudi/includes/rudi.css" media="screen"/> <?php -//include 'header.php'; + + include 'header.php'; + //include 'includes/debug.php'; //require 'includes/sql.class.php'; include_once 'includes/common.class.php'; include_once 'includes/drills.class.php'; include_once 'includes/information.class.php'; +define('BLOCK_RIGHT_DISABLE', true); OpenContent(); echo "<div class=\"contentHeading\">RUDI: Realism Unit Data Interface</div>"; @@ -66,7 +69,14 @@ class RUDI_Gateway extends RUDI_Common //$this->drills = $this->getDrills($_GET['id']); $drills = new RUDI_Drills($_GET['id']); include 'views/view.drills.php'; - break; + break; + case 'points': + $this->Update(); + include 'views/view.points.php'; + break; + case 'weapons': + include 'views/view.weapons.php'; + break; } echo "</td></tr>"; CloseTable(); diff --git a/modules/rudi/views/view.awards.php b/modules/rudi/views/view.awards.php index 5039e56..0a17005 100644 --- a/modules/rudi/views/view.awards.php +++ b/modules/rudi/views/view.awards.php @@ -1,4 +1,4 @@ -<?php //define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?> +<?php define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?> <?php $medals_path = $this->images_path . "/medals/"; ?> <html> diff --git a/modules/rudi/views/view.information.php b/modules/rudi/views/view.information.php index a62ba8a..d017564 100644 --- a/modules/rudi/views/view.information.php +++ b/modules/rudi/views/view.information.php @@ -1,20 +1,20 @@ -<?php
-$unit_id = $_GET['unit_id'];
-$platoon_id = $_GET['platoon_id'];
-switch($_GET['info'])
-{
- case 'unit':
- if(isset($unit_id))
- include_once 'view.unit.php';
- break;
-
- case 'platoon':
- if(isset($unit_id, $platoon_id))
- include_once 'view.platoon.php';
- break;
-
- default:
- ReportError('Invalid info entry');
- return;
-}
+<?php +$unit_id = $_GET['unit_id']; +$platoon_id = $_GET['platoon_id']; +switch($_GET['info']) +{ + case 'unit': + if(isset($unit_id)) + include_once 'view.unit.php'; + break; + + case 'platoon': + if(isset($unit_id, $platoon_id)) + include_once 'view.platoon.php'; + break; + + default: + ReportError('Invalid info entry'); + return; +} ?>
\ No newline at end of file diff --git a/modules/rudi/views/view.platoon.php b/modules/rudi/views/view.platoon.php index dbbb455..4ee60dc 100644 --- a/modules/rudi/views/view.platoon.php +++ b/modules/rudi/views/view.platoon.php @@ -1,22 +1,22 @@ -<?php $data = $info->Platoon($unit_id, $platoon_id); ?>
-
-<table align="center">
- <tr>
- <th> </th>
- <td><img src="<?php echo '/cms/modules/rudi/images/units/' . $data->logo; ?>" alt="<?php echo $data->logo; ?>"/></td>
- </tr>
- <tr>
- <th width="25%">Platoon</th>
- <td><?php echo $data->name; ?></td>
- </tr>
- <tr>
- <th>Creed</th>
- <td><?php echo $data->creed; ?></td>
- </tr>
- <tr>
- <th valign="top">Biography</th>
- <td><?php echo $data->bio; ?></td>
- </tr>
-</table>
-
+<?php $data = $info->Platoon($unit_id, $platoon_id); ?> + +<table align="center"> + <tr> + <th> </th> + <td><img src="<?php echo '/cms/modules/rudi/images/units/' . $data->logo; ?>" alt="<?php echo $data->logo; ?>"/></td> + </tr> + <tr> + <th width="25%">Platoon</th> + <td><?php echo $data->name; ?></td> + </tr> + <tr> + <th>Creed</th> + <td><?php echo $data->creed; ?></td> + </tr> + <tr> + <th valign="top">Biography</th> + <td><?php echo $data->bio; ?></td> + </tr> +</table> + <?php decho($data); ?>
\ No newline at end of file diff --git a/modules/rudi/views/view.points.php b/modules/rudi/views/view.points.php new file mode 100644 index 0000000..bf6c2b6 --- /dev/null +++ b/modules/rudi/views/view.points.php @@ -0,0 +1,35 @@ +<h3>Points Ticker:</h3>
+<table width="100%" class="rudi" cellspacing="0">
+
+ <tr>
+ <!-- Table header -->
+ <th class="header">Rank</th>
+ <th class="header">Name</th>
+ <th class="header">Points</th>
+ <th class="header">Missed Count</th>
+ <th class="header">Attended Count</th>
+ </tr>
+<?php
+ $num = 0;
+ foreach($this->data as $member){
+ if($member->status_id < 4){
+ if($num %2 == 0){
+ echo '<tr style="background-color:#D4D4D4; height:30px;">';
+ }else{
+ echo '<tr style="height:30px;">';
+ }
+?>
+ <td><?php echo $member->rank_short; ?></td>
+ <td><?php echo $member->first_name." ".$member->last_name; ?></td>
+ <td><?php echo $member->points; ?></td>
+ <td><?php echo $member->drillcount; ?></td>
+ <td><?php echo $member->attendcount; ?></td>
+ </tr>
+
+<?php
+ $num++;
+ }
+ }
+
+?>
+</table>
\ No newline at end of file diff --git a/modules/rudi/views/view.profile.php b/modules/rudi/views/view.profile.php index 6135ea4..97adead 100644 --- a/modules/rudi/views/view.profile.php +++ b/modules/rudi/views/view.profile.php @@ -1,10 +1,14 @@ <?php //define('BLOCK_RIGHT_DISABLE','block_right_disable'); $member =& $this->data[$_GET['profile']]; -$uniform_image = $member->first_name[0].str_replace(array("'", "\""), "", $member->last_name).".png"; +$uniform_image = "modules/rudi/images/uniform/".$member->first_name[0].str_replace(array("'", "\""), "", $member->last_name).".png"; decho($member); define('BLOCK_RIGHT_DISABLE', true); + +$arrUnits = $this->getUnitArr($_GET['profile']); +decho($arrUnits); ?> + <style type="text/css"> @@ -15,7 +19,13 @@ define('BLOCK_RIGHT_DISABLE', true); <th class="header">Viewing Profile of: <?php echo $member->rank_long . " " . $member->first_name . " " . $member->last_name; ?></th> </tr> <tr> - <td><center><img src="modules/rudi/images/uniform/<?php echo $uniform_image; ?>" /> </center></td> + <td><center> +<?php + if(file_exists($uniform_image)){ + echo '<img src="'.$uniform_image.'" />'; + } +?> + </center></td> </tr> <tr> <td><table width="100%" border="0" cellpadding="1"> @@ -23,11 +33,18 @@ define('BLOCK_RIGHT_DISABLE', true); <td width="20%"> <table width="100%" border="0" cellpadding="5" align="center" style="border: 0px;"> <tr> - <td><center><?php echo $member->primary_mos; ?></center></td> + <td><center><span style="font-weight: bold; font-size: 16px; font-family: arial;"><?php echo $member->primary_mos; ?></span></center></td> </tr> <tr> - <td><center><img src="modules/rudi/images/ranks/large/<?php echo $member->rank_image; ?>" /> </center></td> - </tr> + <td><center> + <?php + if(file_exists("modules/rudi/images/ranks/large/{$member->rank_image}")){ + echo "<img src=\"modules/rudi/images/ranks/large/{$member->rank_image}\" alt=\"{$member->rank_short}\" />"; + }else{ + echo $member->rank_short; + } + ?> + </center></td></tr> <tr> <td><center><img src="modules/rudi/images/flags/<?php echo $member->country_image; ?>" /> </center></td> </tr> @@ -38,12 +55,12 @@ define('BLOCK_RIGHT_DISABLE', true); <tr> <th class="header" scope="row">Location</th> <td class="info"><?php echo $this->evalData($member->location); ?> </td> - <th class="header">Superior</th> + <th class="header">Reports To</th> <td class="info"><?php - if(!is_null($member->superior_next->leader_id)) - echo "<a href=\"?load=rudi&profile={$member->superior_next->leader_id}\">"; + if(!is_null($member->superior->leader_id)) + echo "<a href=\"?load=rudi&profile={$member->superior->leader_id}\">"; - echo $this->evalData($member->superior_next->name); + echo $this->evalData($member->superior->name); echo "</a> "; ?> </td> @@ -52,23 +69,27 @@ define('BLOCK_RIGHT_DISABLE', true); <th class="header" scope="row">Status</th> <td class="info"><?php echo $this->evalData($member->status); ?> </td> <th class="header">Position</th> - <td class="info"><?php echo $this->evalData($member->position); ?> </td> + <td class="info"><?php echo $this->evalData($member->role_name); ?> </td> </tr> <tr> <th class="header" scope="row">Unit</th> - <td class="info"><?php echo $this->evalData($member->unit_name); ?> </td> + <td class="info"><?php echo $this->evalData($arrUnits[0]['name']); ?> </td> <th class="header">Weapon</th> - <td class="info"><?php echo $this->evalData($member->weapon_name); ?> </td> + <td class="info"><?php echo $this->evalData($member->weapon_model); ?> + <?php if($member->weapon2_model != NULL) + echo "/ ".$member->weapon2_model; + ?> + </td> </tr> <tr> <th class="header" scope="row">Platoon</th> - <td class="info"><?php echo $this->evalData($member->platoon_name); ?> </td> + <td class="info"><?php echo $this->evalData($arrUnits[1]['name']); ?> </td> <th class="header" scope="row">Enlisted</th> <td class="info"><?php echo $this->evalData($member->enlist_date); ?> </td> </tr> <tr> <th class="header" scope="row">Squad</th> - <td class="info"><?php echo $this->evalData($member->squad_name); ?> </td> + <td class="info"><?php echo $this->evalData($arrUnits[2]['name']); ?> </td> <th class="header">Time In Service</th> <?php if($member->discharge_date): ?> <td class="info"><?php echo $this->getDiffTime($member->enlist_date_st, $member->discharge_date); ?> </td> @@ -79,7 +100,7 @@ define('BLOCK_RIGHT_DISABLE', true); </tr> <tr> <th class="header">Team</th> - <td class="info"><?php echo $this->evalData($member->team_name); ?> </td> + <td class="info"><?php echo $this->evalData($arrUnits[3]['name']); ?> </td> <th class="header">Time In Grade</th> <?php if($member->discharge_date): ?> <td class="info"><?php echo $this->getDiffTime($member->promo_date_st, $member->discharge_date); ?> </td> @@ -122,7 +143,7 @@ define('BLOCK_RIGHT_DISABLE', true); <?php foreach($member->service_record as $record): ?> <tr> <th class="header" width="25%"><?php echo date('M j, Y', strtotime($record->date_added)); ?> </th> - <td><?php echo $record->record_note; ?> </td> + <td style="text-align:left; padding-left: 10px;"><?php echo $record->record_note; ?> </td> </tr> <?php endforeach; ?> <?php endif; ?> @@ -142,9 +163,9 @@ define('BLOCK_RIGHT_DISABLE', true); <?php foreach($member->award_record as $record): ?> <tr> <th class="header" width="25%"><?php echo date('M j, Y', strtotime($record->date_added)); ?> </th> - <td ><?php echo $this->evalData($record->award_name); ?> </td> + <td style="text-align:left; padding-left: 10px;" ><?php echo $this->evalData($record->award_name); ?> </td> <td style="vertical-align:middle;"><center><img src="modules/rudi/images/medals/<?php echo $record->image; ?>"/></center></td> - <td width="40%"><?php echo $record->record_note; ?> </td> + <td width="40%" style="text-align:left; padding-left: 10px;"><?php echo $record->record_note; ?> </td> </tr> <?php endforeach; ?> <?php endif; ?> @@ -155,7 +176,7 @@ define('BLOCK_RIGHT_DISABLE', true); <table width="100%" border="0" cellpadding="1" id="thin"> <tr> - <th class="header" scope="col" colspan="3">Combat Record</th> + <th class="header" scope="col" colspan="4">Combat Record</th> </tr> <tr> <?php if($this->evalData($member->combat_record)):?> @@ -163,9 +184,10 @@ define('BLOCK_RIGHT_DISABLE', true); <?php else:?> <?php foreach($member->combat_record as $record): ?> <tr> - <th class="header" width="25%"><?php echo date('M j, Y', strtotime($record->date_added)); ?> </th> + <th class="header" width="25%"><?php echo date('M j, Y', strtotime($record->date)); ?> </th> <td><a href="<?php echo $record->website; ?>"><?php echo $record->name; ?></a> </td> - <td><?php echo $record->status; ?> </td> + <td><?php echo $record->title; ?> </td> + <td><?php echo $record->status . ' '. $record->home_score . '-' . $record->visit_score; ?> </td> </tr> <?php endforeach; ?> <?php endif; ?> diff --git a/modules/rudi/views/view.roster.php b/modules/rudi/views/view.roster.php index c0ee92d..6d7d14f 100644 --- a/modules/rudi/views/view.roster.php +++ b/modules/rudi/views/view.roster.php @@ -1,23 +1,59 @@ -<table width="100%" class="rudi">
-<?php
- $result = $this->db->query("SELECT * FROM `rudi_combat_units` WHERE `detachment` = 0");
- $row = $this->db->fetch($result);
- foreach($row as $unit){
- echo "<tr><th colspan=\"5\">{$unit['name']} : {$unit['callsign']}</th></tr>";
-?>
- <tr>
- <!-- Table header -->
- <th class="header">Rank</th>
- <th class="header">Name</th>
- <th class="header">Role</th>
- <th class="header">Weapon</th>
- <th class="header">Status</th>
- </tr>
-<?php
- $this->printRoster($unit['unit_id'], $unit['leader_id']);
- $this->displayUnitsRec($unit['unit_id']);
- }
-
-?>
-</table>
-
+<div style="text-align: center"> +<?php + + echo LinkInternal('Active Roster','?load=rudi'); + echo ' '.LinkInternal('Past Member Roster','?load=rudi&select=past').'<br /><br />'; + +?> +</div> +<center> +<table width="100%" cellspacing="1" cellpadding="0" class="rudiroster"> +<?php + + if(isset($_GET['select']) && $_GET['select'] == "past"){ + +?> + <tr><th colspan="5">Past Members Roster</th></tr> + <tr> + <!-- Table header --> + <th class="header" width="90px">Rank</th> + <th class="header" width="280px">Name</th> + <th class="header" width="174px">Role</th> + <th class="header" width="160px">Time in Service</th> + <th class="header" width="140px">Status</th> + </tr> +<?php + $this->printPastRoster(); + + }else { + + $result = $this->db->query("SELECT * FROM `rudi_combat_units` WHERE `detachment` = 0"); + $row = $this->db->fetch($result); + foreach($row as $unit){ + $unit_id = $unit['unit_id']; + decho("SELECT `member_id` FROM `rudi_unit_members` WHERE `cunit_id` = '$unit_id' AND `date_discharged` IS NULL LIMIT 1"); + $num = 0; + $check = $this->db->Query("SELECT `member_id` FROM `rudi_unit_members` WHERE `cunit_id` = '$unit_id' AND `date_discharged` IS NULL LIMIT 1"); + $num = $this->db->Rows($check); + if($num >= 1){ + echo "<tr><th colspan=\"5\">{$unit['name']} : {$unit['callsign']}</th></tr>"; +?> + <tr> + <!-- Table header --> + <th class="header" width="90px">Rank</th> + <th class="header" width="300px">Name</th> + <th class="header" width="214px">Role</th> + <th class="header" width="120px">Weapon</th> + <th class="header" width="120px">Status</th> + </tr> +<?php + $this->printRoster($unit['unit_id'], $unit['leader_id']); + $this->displayUnitsRec($unit['unit_id']); + } + } + $this->printReserves(); + } + +?> +</table> +</center> diff --git a/modules/rudi/views/view.unit.php b/modules/rudi/views/view.unit.php index fcc66ac..4e85e29 100644 --- a/modules/rudi/views/view.unit.php +++ b/modules/rudi/views/view.unit.php @@ -1,22 +1,22 @@ -<?php $data = $info->Unit($unit_id); ?>
-
-<table align="center">
- <tr>
- <th> </th>
- <td><img src="<?php echo '/cms/modules/rudi/images/units/' . $data->logo; ?>" alt="<?php echo $data->logo; ?>"/></td>
- </tr>
- <tr>
- <th width="25%">Unit</th>
- <td><?php echo $data->name; ?></td>
- </tr>
- <tr>
- <th>Creed</th>
- <td><?php echo $data->creed; ?></td>
- </tr>
- <tr>
- <th valign="top">Biography</th>
- <td><?php echo $data->bio; ?></td>
- </tr>
-</table>
-
+<?php $data = $info->Unit($unit_id); ?> + +<table align="center"> + <tr> + <th> </th> + <td><img src="<?php echo '/cms/modules/rudi/images/units/' . $data->logo; ?>" alt="<?php echo $data->logo; ?>"/></td> + </tr> + <tr> + <th width="25%">Unit</th> + <td><?php echo $data->name; ?></td> + </tr> + <tr> + <th>Creed</th> + <td><?php echo $data->creed; ?></td> + </tr> + <tr> + <th valign="top">Biography</th> + <td><?php echo $data->bio; ?></td> + </tr> +</table> + <?php decho($data); ?>
\ No newline at end of file diff --git a/modules/rudi/views/view.weapons.php b/modules/rudi/views/view.weapons.php new file mode 100644 index 0000000..2cb033c --- /dev/null +++ b/modules/rudi/views/view.weapons.php @@ -0,0 +1,70 @@ +<?php define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?>
+<?php $medals_path = $this->images_path . "/medals/"; ?>
+
+<html>
+<head>
+ <title>Awards and Medals</title>
+
+<style type="text/css">
+/*th.header {
+ width:175px;
+ background:#333;
+}
+
+td.rudi {
+ text-align: center;
+ vertical-align: middle;
+} */
+</style>
+
+</head>
+<body>
+
+<?php $weapons = $this->getWeapons("ORDER BY role ASC, caliber ASC, model ASC"); ?>
+<center>
+<table class="rudiroster" cellspacing="1" cellpadding="0" align="center">
+<tr><th width="250px">Model</th><th width="250px">Caliber</th><th width="250px">Role</th></tr>
+ <?php
+ $num=0;
+ $role = "Assault";
+ foreach($weapons as $weapon){
+ if($role != $weapon['role']){
+ echo '<tr class="null" style="height:3px;"></tr>';
+ }
+ if($num%2==0)
+ echo '<tr class="high">';
+ else
+ echo "<tr>";
+ echo "<td>".$weapon['model']."</td><td>".$weapon['caliber']."</td><td>".$weapon['role']."</td></tr>";
+ $role = $weapon['role'];
+ $num++;
+ }
+
+ ?>
+
+</table>
+</center>
+<!-- grr wtf
+ <table align="center" style="width: 100%;">
+ <tr>
+ <th scope="col" class="header" style="width:1px;">Image</th>
+ <th scope="col" class="header" style="width:1px;">Award</th>
+ <th scope="col" class="header">Description</th>
+ </tr>
+
+
+ <?php //foreach($this->awards as $award): ?>
+
+ <tr>
+ <td align='center' class="rudi"><img src="/rudi/images/medals/<?php //echo $award->image; ?>"></img> </td>
+ <td align='center' class="rudi"><?php //echo $award->name; ?> </td>
+ <td align='left'><?php //echo wordwrap($award->description,80,"<br/>"); ?> </td>
+ </tr>
+
+ <?php //endforeach; ?>
+
+
+ </table>
+-->
+</body>
+</html>
\ No newline at end of file |