From 58333e92b6df6c20fe3dbf7c2042f2713250c170 Mon Sep 17 00:00:00 2001 From: Luke Last Date: Mon, 19 Sep 2005 21:41:29 +0000 Subject: Deleted some unneeded lines. --- video.module | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) (limited to 'video.module') diff --git a/video.module b/video.module index 44f9f5d..4727573 100644 --- a/video.module +++ b/video.module @@ -724,7 +724,6 @@ function video_play() { break; default: drupal_set_message('Video type not supported', 'error'); - global $base_url; drupal_goto("node/$node->nid"); break; } @@ -1026,15 +1025,6 @@ function theme_video_download(&$node) { drupal_set_message(t('There are no files to download for this video.'), 'error'); drupal_goto("node/$node->nid"); //Redirect back to view page. } - /* - $dev .= "

Temporary Developement stuff."; - $dev .= "
Video File = " . $node->vidfile; - $dev .= "
CWD= " . getcwd(); - $dev .= "
Download Folder: " . $node->download_folder; - $dev .= "
Play Directory Stub: " . $node->play_dir_stub; - $dev .= "
Base URL: " . $base_url . "
"; - $output .= $dev; - */ //Adds a breadcrumb back to view on the download page. This may not be needed but some better breadcrumbs are. $breadcrumb = drupal_get_breadcrumb(); @@ -1177,24 +1167,22 @@ function _video_size2bytes(&$node) { * @link * http://www.laughing-buddha.net/jon/php/sec2hms/ * + * @param $sec + * integer value of seconds. + * * @return - * array of hours, minutes, and seconds, or boolean FALSE on error + * array associative with key values of hours, minutes, and seconds. */ function _video_sec2hms($sec = 0) { $hms = array(); - // 3600 seconds in an hour and trash remainder $hms['hours'] = intval(intval($sec) / 3600); - // dividing the total seconds by 60 will give us // the number of minutes, but we're interested in // minutes past the hour: to get that, we need to // divide by 60 again and keep the remainder $hms['minutes'] = intval(($sec / 60) % 60); - - // keep the remainder - $hms['seconds'] = intval($sec % 60); - + $hms['seconds'] = intval($sec % 60); //keep the remainder. return $hms; } -- cgit v1.2.3