summaryrefslogtreecommitdiff
path: root/osdag_workshop_booking.module
diff options
context:
space:
mode:
Diffstat (limited to 'osdag_workshop_booking.module')
-rw-r--r--osdag_workshop_booking.module23
1 files changed, 23 insertions, 0 deletions
diff --git a/osdag_workshop_booking.module b/osdag_workshop_booking.module
new file mode 100644
index 0000000..9964270
--- /dev/null
+++ b/osdag_workshop_booking.module
@@ -0,0 +1,23 @@
+<?php
+/**
+ * Implementation of hook_menu().
+ */
+function osdag_workshop_booking_menu()
+{
+ $items = array();
+ /* PROPOSAL */
+ $items['osdag-workshop-booking/registration'] = array(
+ 'title' => 'Osdag Workshop Registration form',
+ 'description' => 'Osdag Workshop Registration form',
+ 'page callback' => 'drupal_get_form',
+ 'page arguments' => array(
+ 'osdag_workshop_booking_form'
+ ),
+ 'access arguments' => array(
+ 'workshop booking registration'
+ ),
+ 'type' => MENU_NORMAL_ITEM,
+ 'file' => 'workshop_registration.inc'
+ );
+ return $items;
+}