Skip to content

Commit

Permalink
Prepare for release 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Sep 12, 2024
1 parent 34e0f69 commit 199ca70
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 18 deletions.
35 changes: 21 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
moodle-qbank_bulkxmlexport
=========================
# moodle-qbank_bulkxmlexport

[![Latest Release](https://img.shields.io/github/v/release/bfh/moodle-qbank_bulkxmlexport?sort=semver&color=orange)](https://github.com/bfh/moodle-qbank_bulkxmlexport/releases)
[![Build Status](https://github.com/bfh/moodle-qbank_bulkxmlexport/workflows/Moodle%20Plugin%20CI/badge.svg?branch=main)](https://github.com/bfh/moodle-qbank_bulkxmlexport/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amain)
[![PHP Support](https://img.shields.io/badge/php-8.1--8.3-blue)](https://github.com/bfh/moodle-qbank_bulkxmlexport/actions)
Expand All @@ -9,28 +9,35 @@ moodle-qbank_bulkxmlexport

Moodle question bank plugin to selectively download questions as Moodle XML.

This project was created as MoodleMoot DACH 2024.
This project was created at DevCamp at MoodleMoot DACH 2024.


Requirements
------------
## Requirements

This plugin requires Moodle 4.4.

It will probably work with a lower version of the 4.x branches, however, this was not tested. In case you want to use it with a lower version, please adapt the `version.php`.

Motivation for this report
--------------------------

Quiz question export as XML does only work category wise or question wise. This plugin adds a bulk action
in the question bank.
## Motivation for this report

Quiz question export as XML does only work category wise or for a single question only. This plugin adds a bulk action in the question bank. Questions remain where they are.
The export is an Moodle XML file.

Installation
------------
## Installation

Install the plugin to folder
/question/bank/bulkxmlexport
Install the plugin to folder `<moodle_dir>/question/bank/bulkxmlexport`

Then visit the admin notification page to complete the installation.

See http://docs.moodle.org/en/Installing_plugins for details on installing Moodle plugins

## Version History

### 0.2

- Added ci of Moodle 4.4.
- Added basic behat tests for functionality.

### 0.1

First version after creating it at Moodle Moot DACH 24
9 changes: 5 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@
*
* @package qbank_bulkxmlexport
* @copyright 2024 Stephan Robotta
* @author 2024 Stephan Robotta
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

defined('MOODLE_INTERNAL') || die();

$plugin->component = 'qbank_bulkxmlexport';
$plugin->version = 2024090400;
$plugin->requires = 2021052500;
$plugin->maturity = MATURITY_RC;
$plugin->release = '0.2';
$plugin->version = 2024091200;
$plugin->requires = 2024041200;
$plugin->supported = [404, 404];
$plugin->maturity = MATURITY_RC;

0 comments on commit 199ca70

Please sign in to comment.