summaryrefslogtreecommitdiffstats
path: root/includes/admin/views/_concerts_table.php
Commit message (Collapse)AuthorAgeFilesLines
* tests: Make an actual test for ConcertsTableHarald Eilertsen2021-09-111-3/+3
| | | | | | | | | | | There's a bit of setup to make this work as it should, we need to ensure that the current user and current screen is set to proper values so that the WordPress api's `is_admin()` and `current_user_can()` work as they should. This first test just tests that all the expected forms are being rendered for the admin user accessing the table through the site admin interface.
* fixed proper class naming for Apply buttonAndreaChirulescu2021-09-061-1/+1
|
* removed some extra characters that got lost in table HTMLAndreaChirulescu2021-09-061-1/+1
|
* Fix indentation and whitespace, add braces where missing.Harald Eilertsen2021-09-061-41/+46
|
* added images for checkbox and rediconAndreaChirulescu2021-09-051-4/+5
| | | | added class for City dropdown form
* used auto ident this timeAndreaChirulescu2021-09-051-165/+165
|
* used is_admin() to check if user shoudl see xtra columnsAndreaChirulescu2021-09-051-184/+184
| | | | Re-idented the file
* Extra changes to hide admincolumns on giglog page If logged in but not using ↵AndreaChirulescu2021-09-051-6/+8
| | | | plugin
* CHanges in the concerts table for logged/non logged user. Fixed row header ↵AndreaChirulescu2021-09-051-19/+30
| | | | with city
* Fix some bugs in generated HTML for ConcertsTable.Harald Eilertsen2021-09-051-5/+5
|
* Merge remote-tracking branch 'andrea/andreaschanges' into devHarald Eilertsen2021-09-051-11/+14
|\
| * Re-added the changes for looks, and city/venue selectorAndreaChirulescu2021-09-051-11/+14
| |
* | ConcertsTable: fix getting city row when changing cities.Harald Eilertsen2021-09-051-1/+1
|/
* Move the concerts table and edit form out of AdminPage.Harald Eilertsen2021-09-041-0/+199
Currently the AdminPage is still responsible for updating changes to any of the concerts, but I'd like to get that into their respective classes too. That way the AdminPage will just be a simple class to handle the layout of the page, while all the specific functionality is in their own classes. This is also the first step to be able to reuse the concerts table on the public end of the site.