forked from moodle/moodle
-
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.
MDL-30982 Activity module stepslib - API documentation
- Loading branch information
Showing
2 changed files
with
16 additions
and
5 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
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 |
---|---|---|
|
@@ -18,21 +18,26 @@ | |
/** | ||
* Defines all the backup steps that will be used by {@link backup_workshop_activity_task} | ||
* | ||
* @package mod | ||
* @subpackage workshop | ||
* @copyright 2010 David Mudrak <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
* @package mod_workshop | ||
* @category backup | ||
* @copyright 2010 David Mudrak <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* Defines the complete workshop structure for backup, with file and id annotations | ||
* | ||
* @see http://docs.moodle.org/dev/Workshop for XML structure diagram | ||
* @link http://docs.moodle.org/dev/Workshop for XML structure diagram | ||
*/ | ||
class backup_workshop_activity_structure_step extends backup_activity_structure_step { | ||
|
||
/** | ||
* Defines the structure of the 'workshop' element inside the workshop.xml file | ||
* | ||
* @return backup_nested_element | ||
*/ | ||
protected function define_structure() { | ||
|
||
// are we including userinfo? | ||
|