Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix/getContentNode
Browse files Browse the repository at this point in the history
  • Loading branch information
mstuder committed Jan 12, 2023
1 parent 412ba0a commit 4b2abdd
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 27 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
## [2023.01.12]
- fix getContentNode

## [2.8.0]
- Support ILIAS 7
Expand Down
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ Allows the connection of an OwnCloud platform to ILIAS LMS through ILIAS' Cloud

Have a look at the [full Documentation](/doc/Documentation.pdf?raw=true)

## Getting Started

### Requirements

* ILIAS 6.x / 7.x

### Installation

Start at your ILIAS root directory
```bash
mkdir -p Customizing/global/plugins/Modules/Cloud/CloudHook/
cd Customizing/global/plugins/Modules/Cloud/CloudHook/
git clone https://github.com/fluxapps/OwnCloud.git
```
As ILIAS administrator go to "Administration->Plugins" and install/activate the plugin.

## Rebuild & Maintenance

fluxlabs ag, support@fluxlabs.ch
Expand Down
2 changes: 1 addition & 1 deletion classes/class.ownclTreeGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function getNodeContent($node)

$node->getName() ? $name = $node->getName() : $name = $config->getServiceTitle();

return $name;
return htmlspecialchars($name);
}


Expand Down
24 changes: 2 additions & 22 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,6 @@
{
"name": "srag/plugins/owncloud",
"description": "",
"name": "fluxapps/owncloud",
"type": "project",
"keywords": [
"ILIAS",
"Plugin",
"OwnCloud",
"Sciebo"
],
"homepage": "https://github.com/studer-raimann/OwnCloud",
"license": "GPL-3.0-only",
"authors": [
{
"name": "studer + raimann ag - Team Custom 1",
"email": "support-custom1@studer-raimann.ch",
"homepage": "https://studer-raimann.ch",
"role": "Developer"
}
],
"support": {
"issues": "https://plugins.studer-raimann.ch/goto.php?target=uihk_srsu_PLOWNCLOUD"
},
"require": {
"league/oauth2-client": "^2.4",
"php": ">=7.0",
Expand All @@ -47,4 +27,4 @@
"srag\\LibrariesNamespaceChanger\\PHP72Backport::PHP72Backport"
]
}
}
}
8 changes: 4 additions & 4 deletions plugin.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
$id = 'owncld';
$version = '2.8.0';
$ilias_min_version = '5.4.0';
$version = '2023.01.12';
$ilias_min_version = '6.0';
$ilias_max_version = '7.999';
$responsible = 'Theodor Truffer';
$responsible_mail = 'tt@studer-raimann.ch';
$responsible = 'Martin Studer';
$responsible_mail = 'support@fluxlabs.ch';

0 comments on commit 4b2abdd

Please sign in to comment.