Skip to content
......@@ -7,36 +7,37 @@
* @author Thomas Joußen <tjoussen@databay.de>
*/
interface ManufacturerInterface {
interface ManufacturerInterface
{
/**
* Get an singleton of the manufacturer
*
* @return ManufacturerInterface
*/
public static function _getInstance();
/**
* Get an singleton of the manufacturer
*
* @return ManufacturerInterface
*/
public static function _getInstance();
/**
* Create a new specific Composite object which is representing the delivered Attribute
*
* @param string $attribute
*
* @return AbstractComposite
*/
public function manufacture($attribute);
/**
* Create a new specific Composite object which is representing the delivered Attribute
*
* @param string $attribute
*
* @return AbstractComposite
*/
public function manufacture($attribute);
/**
* @return string
*/
public function getPattern();
/**
* @return string
*/
public function getPattern();
/**
* Matches a delivered string with a the pattern returned by getPattern implemented in the explicit Manufacturer
*
* @param string $subject
*
* @see ManufacturerInterface::getPattern()
* @return array
*/
public function match($subject);
}
\ No newline at end of file
/**
* Matches a delivered string with a the pattern returned by getPattern implemented in the explicit Manufacturer
*
* @param string $subject
*
* @see ManufacturerInterface::getPattern()
* @return array
*/
public function match($subject);
}
# ILIAS QuestionSetPool
* For ILIAS versions: 5.3.0 - 5.4.999
* For ILIAS versions: 6.0 - 6.999
## Installation Instructions
1. Create the plugin path:
......@@ -20,3 +20,10 @@
3. Select **Plugins** from the **Administration** main menu drop down.
4. Search the **QuestionSetPool** plugin in the list of plugin and choose **Activate** from the **Actions** drop down.
5. Choose **Configure** from the **Actions** drop down and enter the required data.
## Dependencies
### Graphviz
Please install [`Graphviz`](https://graphviz.org/). Graphviz is required for
the graph visualization of the question paths.
\ No newline at end of file
This diff is collapsed.