removed mods directory from the ATutor codebase
[atutor.git] / mods / openmeetings / html / create_room.inc.php
diff --git a/mods/openmeetings/html/create_room.inc.php b/mods/openmeetings/html/create_room.inc.php
deleted file mode 100644 (file)
index ac81742..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php\r
-/************************************************************************/\r
-/* ATutor                                                                                                                              */\r
-/************************************************************************/\r
-/* Copyright (c) 2002-2008 by Greg Gay, Cindy Qi Li, Harris Wong               */\r
-/* Adaptive Technology Resource Centre / University of Toronto                 */\r
-/* http://atutor.ca                                                                                                            */\r
-/*                                                                                                                                             */\r
-/* This program is free software. You can redistribute it and/or               */\r
-/* modify it under the terms of the GNU General Public License                 */\r
-/* as published by the Free Software Foundation.                                               */\r
-/************************************************************************/\r
-// $Id: create_room.inc.php 7208 2008-01-09 16:07:24Z harrisw $\r
-\r
-//Get default values if POST is empty\r
-$_POST = loadDefaultValues($_POST);    //openmeetings.inc.php\r
-\r
-?>\r
-<form action="<?php $_SERVER['PHP_SELF']; ?>" method="post">\r
-       <div class="input-form">\r
-               <div class="row"><p><?php echo _AT('openmeetings_create_room_instr'); ?></p></div>\r
-       </div>\r
-       <div class="input-form">\r
-               <?php include ('create_room.tmpl.php'); ?>\r
-\r
-               <div class="row buttons">\r
-                       <input type="submit" name="create_room" value="<?php echo _AT('openmeetings_create_room'); ?>"  />\r
-               </div>\r
-       </div>\r
-</form>\r
-\r
-<script type="text/javascript">\r
-       function om_toggler(name, enabled){\r
-               var obj_w = document.getElementById(name + '_w');\r
-               var obj_h = document.getElementById(name + '_h');\r
-               if(enabled==true) {\r
-                       obj_w.disabled = "";    \r
-                       obj_h.disabled = "";    \r
-               } else if (enabled==false){\r
-                       obj_w.disabled = "disabled";\r
-                       obj_h.disabled = "disabled";\r
-               }\r
-       }\r
-</script>\r