From b6e86040dd3faa3a70ec16e77220d852bdb09a04 Mon Sep 17 00:00:00 2001 From: Heshan Wanigasooriya Date: Sun, 5 Dec 2010 12:56:20 +0000 Subject: Adding latest files. --- filesystem/.cvsignore | 1 + filesystem/drupal.inc | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 filesystem/.cvsignore create mode 100644 filesystem/drupal.inc (limited to 'filesystem') 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 @@ +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; + } + +} + +?> -- cgit v1.2.3