aboutsummaryrefslogtreecommitdiff
path: root/filesystem
diff options
context:
space:
mode:
authorHeshan Wanigasooriya <heshanmw@gmail.com>2010-12-05 12:56:20 +0000
committerHeshan Wanigasooriya <heshanmw@gmail.com>2010-12-05 12:56:20 +0000
commitb6e86040dd3faa3a70ec16e77220d852bdb09a04 (patch)
treecdb4282446dfb0efd750b87a7aaedd30229f0ff9 /filesystem
parent973537f36c8f33473a00190aa64fc30b82d94c04 (diff)
downloadvideo-b6e86040dd3faa3a70ec16e77220d852bdb09a04.tar.gz
video-b6e86040dd3faa3a70ec16e77220d852bdb09a04.tar.bz2
Adding latest files.
Diffstat (limited to 'filesystem')
-rw-r--r--filesystem/.cvsignore1
-rw-r--r--filesystem/drupal.inc70
2 files changed, 71 insertions, 0 deletions
diff --git a/filesystem/.cvsignore b/filesystem/.cvsignore
new file mode 100644
index 0000000..e43b0f9
--- /dev/null
+++ b/filesystem/.cvsignore
@@ -0,0 +1 @@
+.DS_Store
diff --git a/filesystem/drupal.inc b/filesystem/drupal.inc
new file mode 100644
index 0000000..d85490d
--- /dev/null
+++ b/filesystem/drupal.inc
@@ -0,0 +1,70 @@
+<?php
+
+//$Id$
+/*
+ * @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;
+ }
+
+}
+
+?>