Added locations table and editor

This commit is contained in:
jacob 2010-06-10 18:09:16 +00:00
parent 122248a03c
commit dab613b746
3 changed files with 35 additions and 10 deletions

View File

@ -13,7 +13,7 @@
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.
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
@ -22,17 +22,34 @@
*/
?>
<?
require("../common.inc.php");
require_once("../user.inc.php");
user_auth_required('committee', 'admin');
require("../common.inc.php");
require("../tableeditor.class.php");
require_once("../user.inc.php");
user_auth_required('committee', 'admin');
send_header("Event Locations",
array('Committee Main' => 'committee_main.php',
send_header("Event Locations",
array('Committee Main' => 'committee_main.php',
'Administration' => 'admin/index.php'),
"events_scheduling" );
"events_scheduling" );
echo "<br />";
echo "<br />";
$editor = new TableEditor("locations",
array(
"name" => "Location Name"
),
array(
"name" => "Location Name"
),
array(
"conferences_id" => $conference['id']
)
send_footer();
);
$editor->setPrimaryKey("id");
$editor->execute();
send_footer();
?>

View File

@ -1 +1 @@
175
176

8
db/db.update.176.sql Normal file
View File

@ -0,0 +1,8 @@
CREATE TABLE `locations` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`conference_id` INT NOT NULL ,
`name` VARCHAR( 128 ) NOT NULL
) ENGINE = MYISAM ;