Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jessgusclark/downloadscoresheets
A plugin for BCOE&M that allows users to download their score sheets once they are ready.
https://github.com/jessgusclark/downloadscoresheets
Last synced: 9 days ago
JSON representation
A plugin for BCOE&M that allows users to download their score sheets once they are ready.
- Host: GitHub
- URL: https://github.com/jessgusclark/downloadscoresheets
- Owner: jessgusclark
- Created: 2013-12-11T16:22:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-18T23:51:17.000Z (over 9 years ago)
- Last Synced: 2024-10-12T05:49:28.273Z (about 1 month ago)
- Language: PHP
- Size: 730 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DownloadScoreSheets
===================A plugin for BCOE&M that allows competition participants to download their score sheets once they are ready. This project is still a work in progress and was used in the 2014 Sweethearts Revenge Competition: http://sweethearts.weizguys.com/
Install
-------
Extract all the files into the directory: **/mods/downloadScoreSheets**Open up **/mods/downloadScoreSheets/config.php** and change the second variable name ($PdfDirectory) to point to a new directory that you will upload the final score sheet PDF's to.
Upload the **/mods/downloadScoreSheets** directory to the server.
Create the score sheet directory on the server.
In the BCOE&M Admin area, make sure Custom Modules are turned on. If they are turned off, go to the Site Preferences located under "Defining Preferences". Set "Use Custom Modules" to "Yes"
Once Custom Modules are set to "Yes", Go to "Admin" / "Custom Modules" / "Add" / "A Custom Module". Use the following options:
- **Custom Module Name:** DownloadScoreSheets
- **Description:**
- **FileName:** downloadScoreSheets/downloadScoreSheets.php
- **Type:** PHP Code or Function
- **Permission:** All Users
- **Extends Core Function:** User's My Info and Entries
- **Rank:** 1
- **Display Order:** After Content
- **Enable?:** Yes
### Check Installation
Go to the "My Info and Entries" page and scroll to the bottom. There should be a heading that says "Download Score Sheets".
### Upload Scoresheets
The scoresheets need to be scanned in and then named according to their Judging Number. I.E. 01-001.pdf, 01-002.pdf.
Upload the PDF's into the score sheets directory that was defined in the configuration file.
Open up **/mods/downloadScoreSheets/config.php** and change the first variable ($DownloadLinksReady) to TRUE
If you have entered a beer into the competition, go to the "My Info and Entries" page and scroll to the bottom. For each beer entered, there should be a bulleted item that when clicked will download that PDF.
### Test Downloads
Open up config.php and change $TestMode = TRUE. This will allow any user to download any scoresheet and is helpful for testing.
You will also need to create a new table in your database to use for confirming. Use the following SQL in PHPMyADMIN:
```
CREATE TABLE IF NOT EXISTS `downloadConfirm` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`ScoresheetID` int(11) NOT NULL,
`Status` int(11) NOT NULL,
`VerifiedBy` varchar(255) NOT NULL,
`Comments` text NOT NULL,
`Sha` int(11) NOT NULL,
PRIMARY KEY (`ID`)
);
```Navigate to /mods/downloadScoreSheets/tests/all.php to see a list of all the beer entries in the database.