Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pbchase committed Feb 14, 2020
2 parents 8852c46 + 7ab4800 commit 508bcd4
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
7 changes: 7 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# AUTHORS

CSS Injector would not be possible without generous contributions from our authors and funders.

David R Nelson, Director of the University of Florida Clinical Translational Science Institute, provides funding support for the UF CTSI REDCap team via UF CTSA Award and matching funds from the UF Office of Research. Robert Leeman provided support for this project through his risky behavior studies.

We want to thank our developers Kyle Chesney [email protected], Taryn Stoffs [email protected], Philip Chase [email protected], Marly Cormar [email protected], Tiago Bember [email protected], and Christopher Barnes [email protected] for their contributions to the project.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ All notable changes to the REDCap CSS Injector module will be documented in this
This project adheres to [Semantic Versioning](http://semver.org/).


## [1.1.1] - 2020-02-14
### Changed
- Add DOI to README.md (Philip Chase)
- Update authors in config.json (Philip Chase)
- Add AUTHORS file (Philip Chase)
- use builtin method instead of referencing ExternalModules class (Kyle Chesney)


## [1.1.0] - 2019-09-23
### Added
- Add flat/gradient stylized survey css example (Kyle Chesney)
Expand Down
4 changes: 2 additions & 2 deletions ExternalModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ function getFormattedSettings($project_id = null) {

if ($project_id) {
$settings = $settings['project-settings'];
$values = ExternalModules::getProjectSettingsAsArray($this->PREFIX, $project_id);
$values = $this->getProjectSettings($project_id);
}
else {
$settings = $settings['system-settings'];
$values = ExternalModules::getSystemSettingsAsArray($this->PREFIX);
$values = $this->getSystemSettings();
}

return $this->_getFormattedSettings($settings, $values);
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# REDCap CSS Injector
Allows administrators to inject CSS into surveys and data entry forms.

[![DOI](https://zenodo.org/badge/141312467.svg)](https://zenodo.org/badge/latestdoi/141312467)

## Prerequisites
- REDCap >= 8.0.3

Expand Down
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"institution": "University of Florida - CTSI"
},
{
"name": "Tiago Bember",
"email": "tbembersimeao@ufl.edu",
"name": "Kyle Chesney",
"email": "kyle.chesney@ufl.edu",
"institution": "University of Florida - CTSI"
}
],
Expand Down

0 comments on commit 508bcd4

Please sign in to comment.