You are here

class drupal in Video 6.4

Same name and namespace in other branches
  1. 6.5 filesystem/drupal.inc \drupal

Hierarchy

Expanded class hierarchy of drupal

7 string references to 'drupal'
video_cron in ./video.module
Implmentation of hook_cron().
video_filesystem::admin_settings in includes/filesystem.inc
video_filesystem::__construct in includes/filesystem.inc
video_helper::video_object in includes/video_helper.inc
video_requirements in ./video.install
Implementation of hook_requirements().

... See full list

File

filesystem/drupal.inc, line 7

View source
class drupal implements filesystem_interface {
  protected $params = array();
  protected $name = 'Drupal file system';
  protected $value = 'drupal';
  public function __construct() {
  }
  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 l(t('Drupal file system'), 'admin/settings/file-system');
  }

  /**
   * Interface Implementations
   * @see sites/all/modules/video/includes/filesystem_interface#get_value()
   */
  public function get_value() {
    return $this->value;
  }
  public function admin_settings() {
    $form = array();
    return $form;
  }
  public function admin_settings_validate($form, &$form_state) {
    return;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
drupal::$name protected property
drupal::$params protected property
drupal::$value protected property
drupal::admin_settings public function Overrides filesystem_interface::admin_settings
drupal::admin_settings_validate public function Overrides filesystem_interface::admin_settings_validate
drupal::get_help public function Interface Implementations Overrides filesystem_interface::get_help
drupal::get_name public function Interface Implementations Overrides filesystem_interface::get_name
drupal::get_value public function Interface Implementations Overrides filesystem_interface::get_value
drupal::load_file public function Overrides filesystem_interface::load_file
drupal::__construct public function