You are here

interface video_filesystem in Video 6.5

Hierarchy

Expanded class hierarchy of video_filesystem

All classes that implement video_filesystem

File

./video.lib.inc, line 15
File containing Video module interfaces and classes

View source
interface video_filesystem extends video_plugin {

  /**
   * Process the given video in preparation for use on the
   * front end.
   */
  public function load_file(stdClass $video);

  /**
   * @return bool
   *   FALSE if an error occured while doing the operation, TRUE when no operation was needed or on success
   */
  public function onpreconvert(stdClass $video);

  /**
   * @return bool
   *   FALSE if an error occured while doing the operation, TRUE when no operation was needed or on success
   */
  public function onpostconvert(stdClass $video);

  /**
   * Delete the video from the file system.
   */
  public function delete_video(stdClass $video);

}

Members

Namesort descending Modifiers Type Description Overrides
video_filesystem::delete_video public function Delete the video from the file system. 2
video_filesystem::load_file public function Process the given video in preparation for use on the front end. 2
video_filesystem::onpostconvert public function 2
video_filesystem::onpreconvert public function 2
video_plugin::admin_settings public function 4
video_plugin::admin_settings_validate public function 4
video_plugin::get_help public function 4
video_plugin::get_name public function 4
video_plugin::get_value public function 4