aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_upload
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2006-09-21 12:25:55 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2006-09-21 12:25:55 +0000
commit781a2e7c4fb8901e14e5a2b2d537185b88c36e97 (patch)
treed2cb06557432b2bda67f83716844e6c8ac3524e7 /plugins/video_upload
parentd7b1524caa8aa292df7dfea0bead120df68ea5cb (diff)
downloadvideo-781a2e7c4fb8901e14e5a2b2d537185b88c36e97.tar.gz
video-781a2e7c4fb8901e14e5a2b2d537185b88c36e97.tar.bz2
Patch #82224 by vhmauery (http://drupal.org/user/28957)
Bring Video up to date with HEAD: updated all video modules to be used on next drupal 5.0
Diffstat (limited to 'plugins/video_upload')
-rw-r--r--plugins/video_upload/video_upload.module24
1 files changed, 22 insertions, 2 deletions
diff --git a/plugins/video_upload/video_upload.module b/plugins/video_upload/video_upload.module
index e467d7e..41e79ae 100644
--- a/plugins/video_upload/video_upload.module
+++ b/plugins/video_upload/video_upload.module
@@ -14,19 +14,39 @@
*/
function video_upload_help($section) {
switch ($section) {
- case 'admin/modules#description':
+ case 'admin/settings/modules#description':
return t('Enable video files uploading in video module.');
}
}
/**
+ * Implementation of hook_menu().
+ */
+function video_upload_menu($may_cache) {
+ $items = array();
+ if ($may_cache) {
+ $items[] = array(
+ 'path' => 'admin/content/video/upload',
+ 'title' => t('upload'),
+ 'description' => t('administer video_upload module settings'),
+ 'callback' => 'drupal_get_form',
+ 'callback arguments' => array('video_upload_settings_form'),
+ 'access' => user_access('administer site configuration'),
+ 'type' => MENU_NORMAL_ITEM,
+ );
+ }
+ return $items;
+}
+
+
+/**
* Settings Hook
*
* @return
* string of form content or error message
*/
-function video_upload_settings() {
+function video_upload_settings_form() {
//Must have "administer site configuration" and "administer video" privilages.
if (!user_access('administer video')) {
drupal_access_denied();