class drupal in Video 6.4
Same name and namespace in other branches
- 6.5 filesystem/drupal.inc \drupal
Hierarchy
- class \drupal implements filesystem_interface
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().
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
drupal:: |
protected | property | ||
drupal:: |
protected | property | ||
drupal:: |
protected | property | ||
drupal:: |
public | function |
Overrides filesystem_interface:: |
|
drupal:: |
public | function |
Overrides filesystem_interface:: |
|
drupal:: |
public | function |
Interface Implementations Overrides filesystem_interface:: |
|
drupal:: |
public | function |
Interface Implementations Overrides filesystem_interface:: |
|
drupal:: |
public | function |
Interface Implementations Overrides filesystem_interface:: |
|
drupal:: |
public | function |
Overrides filesystem_interface:: |
|
drupal:: |
public | function |