summaryrefslogtreecommitdiffstats
path: root/includes/admin/views
Commit message (Collapse)AuthorAgeFilesLines
* Added drop down menu for admin actions on concert logAndreaChirulescu2021-04-061-48/+47
|
* Merge changes to concert table update code.Harald Eilertsen2021-04-061-10/+8
| | | | Code is now located in the GiglogAdmin_AdminPage::update method.
* Make concert table buttons work.Harald Eilertsen2021-04-051-9/+159
| | | | | | Moved processing of POST requests to it's own method, and added a visual clue that a slot has been selected. Also moved relevant code into the AdminPage class.
* Sanitize input in AdminPage::get_concerts.Harald Eilertsen2021-04-021-2/+2
|
* Clean up AdminPage::get_filters.Harald Eilertsen2021-04-011-34/+26
| | | | | | | Use the Venue class to fetch venue related info from the database, and clean up the generation of html a little. Also sanitize input, to try to prevent XSS vulnerabilities.
* Move rendering of concert assignment table.Harald Eilertsen2021-04-011-2/+203
| | | | | | Moved it to the admin page for now. May move it further to a partial or something later. There's quite a bit of cleanup needed. It still refers to some utility functions in the old shortcode module.
* Fix gig import logic.Harald Eilertsen2021-04-011-16/+22
| | | | | Add entry to concertlogs table, and fix some error reporting and misc input cleaning.
* Refactor processing uploads.Harald Eilertsen2021-03-081-58/+41
| | | | | | | | | | 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.
* Expand the main Giglog admin page.Harald Eilertsen2021-03-071-1/+7
| | | | | | Display the table for assigning photographers to the different gigs on the main admin page for the plugin. Somehow this does not work as it should, but leave that for later.
* Import gigs directly from uploaded file.Harald Eilertsen2021-03-071-11/+77
| | | | | | | | | | The original snippet based design expected an unknown number of files with gig data to be available at some specific location, and an admin could "process" these at will. When transforming to a plugin based design, we don't really need this two stage import anymore, so just process the imported data right away. This also makes the `wpg_files` table obsolete.
* Implement upload of gig data files.Harald Eilertsen2021-03-071-1/+41
|
* Add a sub page for importing gigs in admin.Harald Eilertsen2021-02-231-0/+25
| | | | Just an emtpy placeholder for now.
* Add top level menu to WordPress admin menu.Harald Eilertsen2021-02-211-0/+26
Currently nothing useful on the page, but a placeholder for a more useful page later, and possibly submenus for other functionality. The menu is placed right below the 'Media' menu for now, and is available to anyone with the 'upload_files' capability. Both of these may be adjusted later if there's a better location or other capabilities fit better.