Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove Band class and tests. | Harald Eilertsen | 2021-06-27 | 1 | -151/+0 |
| | |||||
* | Autofixes by Psalm | Harald Eilertsen | 2021-05-08 | 1 | -1/+1 |
| | |||||
* | Auto fixup missing return types by Psalm | Harald Eilertsen | 2021-05-08 | 1 | -2/+7 |
| | |||||
* | Fix Bands class constructor. | Harald Eilertsen | 2021-04-21 | 1 | -5/+10 |
| | | | | | | The expected attributes did not have names corresponding with the table columns, which meant that creating a band directly from a returned table row did not produce the expected result. | ||||
* | Refactor Band::create into Band::find and ::create | Harald Eilertsen | 2021-04-15 | 1 | -21/+28 |
| | | | | | | Not sure if it's a good idea to have `create` return an existing band. Will have to look at callsites to see if it should be renamed back or if the callsite should be changed. | ||||
* | Make Band::create return band object, not just id. | Harald Eilertsen | 2021-04-15 | 1 | -11/+10 |
| | |||||
* | Got rid of find or create for concert and band | AndreaChirulescu | 2021-04-14 | 1 | -14/+96 |
| | | | | Refactored band | ||||
* | Switch to Reuse for license handling. | Harald Eilertsen | 2021-04-14 | 1 | -16/+5 |
| | | | | Run `reuse lint` to verify that all material is licensed. | ||||
* | Fixed capital IFs and hopefully formatting issues | AndreaChirulescu | 2021-04-11 | 1 | -3/+3 |
| | |||||
* | Added small forms to add new venue and band | AndreaChirulescu | 2021-04-11 | 1 | -7/+17 |
| | | | | Made form for concert both functional to edit existing concert or add new concert | ||||
* | Beuatified files after using editconfig with notepad++ | AndreaChirulescu | 2021-04-09 | 1 | -53/+54 |
| | |||||
* | Beginning of a very rudimentary form for adding/editing concerts | AndreaChirulescu | 2021-04-08 | 1 | -44/+53 |
| | |||||
* | Refactor processing uploads. | Harald Eilertsen | 2021-03-08 | 1 | -0/+44 |
Moves all database operations to separate classes for each type of object, bands, venues and concerts. This makes the logic cleaner, and concentrates the db related code to logically distinct parts of the code. This means we no longer need the global access to the $wpdb object from the processing code. |