aboutsummaryrefslogtreecommitdiff
path: root/filesystem
diff options
context:
space:
mode:
authorHeshan <heshan@heidisoft.com>2011-03-19 00:33:50 +0530
committerHeshan <heshan@heidisoft.com>2011-03-19 00:33:50 +0530
commita43b5f2f08002e47bc575f5a4a4618ebebc3d9c6 (patch)
tree6552d0f616ed4680797a4f67829bc5e556359e32 /filesystem
parent797aef53344791c484e5568a1a4a639301ed262f (diff)
downloadvideo-a43b5f2f08002e47bc575f5a4a4618ebebc3d9c6.tar.gz
video-a43b5f2f08002e47bc575f5a4a4618ebebc3d9c6.tar.bz2
Updated the hook_theme and video themes, remove theme funcations to video.theme.inc and added HTML5 with Flash fallback with Flowplayer
Diffstat (limited to 'filesystem')
-rw-r--r--filesystem/.cvsignore1
-rw-r--r--filesystem/drupal.inc69
2 files changed, 0 insertions, 70 deletions
diff --git a/filesystem/.cvsignore b/filesystem/.cvsignore
deleted file mode 100644
index e43b0f9..0000000
--- a/filesystem/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.DS_Store
diff --git a/filesystem/drupal.inc b/filesystem/drupal.inc
deleted file mode 100644
index 2f79c8b..0000000
--- a/filesystem/drupal.inc
+++ /dev/null
@@ -1,69 +0,0 @@
-<?php
-
-/*
- * @file
- * Class file used to store filesystem on the video.
- *
- */
-class drupal extends video_filesystem {
-
- protected $params = array();
- protected $name = 'Drupal File System';
- protected $value = 'drupal';
-
- public function __construct() {
-
- }
-
- public function save_file($video) {
-
- }
-
- public function prepare_file($video) {
-
- }
-
- public function load_file(&$video) {
-
- }
-
- /**
- * Interface Implementations
- * @see sites/all/modules/video/includes/filesystem_interface#get_name()
- */
- public function get_name() {
- return $this->name;
- }
-
- /**
- * Interface Implementations
- * @see sites/all/modules/video/includes/filesystem_interface#get_help()
- */
- public function get_help() {
- return t('Drupal filesystem', array());
- }
-
- /**
- * Interface Implementations
- * @see sites/all/modules/video/includes/filesystem_interface#get_value()
- */
- public function get_value() {
- return $this->value;
- }
-
- public function run_command($options) {
- return;
- }
-
- public function admin_settings() {
- $form = array();
- return $form;
- }
-
- public function admin_settings_validate($form, $form_state) {
- return;
- }
-
-}
-
-?>