forked from DatabayAG/InteractiveVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
144 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
require_once 'Services/Export/classes/class.ilExportGUI.php'; | ||
/** | ||
* Class ilInteractiveVideoExportGUI | ||
*/ | ||
class ilInteractiveVideoExportGUI extends ilExportGUI | ||
{ | ||
/** | ||
* {@inheritdoc} | ||
*/ | ||
protected function buildExportTableGUI() | ||
{ | ||
require_once 'class.ilInteractiveVideoExportTableGUI.php'; | ||
$table = new ilInteractiveVideoExportTableGUI($this, 'listExportFiles', $this->obj); | ||
return $table; | ||
} | ||
|
||
/** | ||
* Download file | ||
*/ | ||
public function download() | ||
{ | ||
if(isset($_GET['file']) && $_GET['file']) | ||
{ | ||
$_POST['file'] = array($_GET['file']); | ||
} | ||
parent::download(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
/* Copyright (c) 1998-2015 ILIAS open source, Extended GPL, see docs/LICENSE */ | ||
|
||
require_once 'Services/Export/classes/class.ilExportTableGUI.php'; | ||
require_once 'Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php'; | ||
|
||
/** | ||
* Class ilInteractiveVideoExportTableGUI | ||
*/ | ||
class ilInteractiveVideoExportTableGUI extends ilExportTableGUI | ||
{ | ||
/** | ||
* Constructor | ||
* | ||
* @access public | ||
* @param | ||
* @return | ||
*/ | ||
public function __construct($a_parent_obj, $a_parent_cmd, $a_exp_obj) | ||
{ | ||
parent::__construct($a_parent_obj, $a_parent_cmd, $a_exp_obj); | ||
|
||
// NOT REQUIRED ANYMORE, PROBLEM NOW FIXED IN THE ROOT | ||
// KEEP CODE, JF OPINIONS / ROOT FIXINGS CAN CHANGE | ||
//$this->addCustomColumn($this->lng->txt('actions'), $this, 'formatActionsList'); | ||
} | ||
|
||
/*** | ||
* | ||
*/ | ||
protected function initMultiCommands() | ||
{ | ||
$this->addMultiCommand('confirmDeletion', $this->lng->txt('delete')); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
require_once './Services/Export/classes/class.ilXmlExporter.php'; | ||
|
||
/** | ||
* Class ilInteractiveVideoExporter | ||
*/ | ||
class ilInteractiveVideoExporter extends ilXmlExporter | ||
{ | ||
public function getXmlRepresentation($a_entity, $a_schema_version, $a_id) | ||
{ | ||
// TODO: Implement getXmlRepresentation() method. | ||
} | ||
|
||
public function init() | ||
{ | ||
// TODO: Implement init() method. | ||
} | ||
|
||
public function getValidSchemaVersions($a_entity) | ||
{ | ||
// TODO: Implement getValidSchemaVersions() method. | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
require_once './Services/Export/classes/class.ilXmlImporter.php'; | ||
|
||
/** | ||
* Class ilInteractiveVideoImporter | ||
*/ | ||
class ilInteractiveVideoImporter extends ilXmlImporter | ||
{ | ||
public function importXmlRepresentation($a_entity, $a_id, $a_xml, $a_mapping) | ||
{ | ||
// TODO: Implement importXmlRepresentation() method. | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
$id = 'xvid'; | ||
|
||
// code version; must be changed for all code changes | ||
$version = '2.0.5'; | ||
$version = '2.0.6'; | ||
|
||
// ilias min and max version; must always reflect the versions that should | ||
// run with the plugin | ||
|
@@ -14,4 +14,5 @@ | |
$responsible = 'Nadia Ahmad / Michael Jansen / Max Becker / Guido Vollbach'; | ||
$responsible_mail = '[email protected] / [email protected] / [email protected] / [email protected]'; | ||
|
||
$learning_progress = true; | ||
$learning_progress = true; | ||
$supports_export = true; |