aboutsummaryrefslogtreecommitdiff
path: root/filesystem/drupal.inc
diff options
context:
space:
mode:
Diffstat (limited to 'filesystem/drupal.inc')
-rw-r--r--filesystem/drupal.inc69
1 files changed, 0 insertions, 69 deletions
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;
- }
-
-}
-
-?>