diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-09-11 18:43:53 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-09-11 18:43:53 +0200 |
commit | f2c8c10eb5ef7c9bb9707c4787b65f31c8b56292 (patch) | |
tree | c3148b1dbe676b84033ea1daa48a081c4bf16273 /includes/giglog_visitor_display.php | |
parent | aefe55a70d6f6bae7825f3a1a6b61046c8ec2cc3 (diff) | |
download | gigologadmin-f2c8c10eb5ef7c9bb9707c4787b65f31c8b56292.tar.gz gigologadmin-f2c8c10eb5ef7c9bb9707c4787b65f31c8b56292.tar.bz2 gigologadmin-f2c8c10eb5ef7c9bb9707c4787b65f31c8b56292.zip |
Change how we load the plugin.
Since we now have code that should be available, both on the public blog
and in the admin section, we need to be more graular when loading the
various parts of the plugin.
We still try to avoid loading admin-only parts for the public blog, but
allways load the parts that we need in either case. Also avoid running
the db migrations when running unit tests, as the schema is copied over
from the dev environment it just caues problems.
Finally, don't hardcode unit tests to always be in_admin, but rather
determine that for each test.
Diffstat (limited to 'includes/giglog_visitor_display.php')
-rw-r--r-- | includes/giglog_visitor_display.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/includes/giglog_visitor_display.php b/includes/giglog_visitor_display.php index 8177cb8..567bf41 100644 --- a/includes/giglog_visitor_display.php +++ b/includes/giglog_visitor_display.php @@ -1,13 +1,8 @@ <?php declare(strict_types=1); -function display_giglog() +function display_giglog() : string { - require_once __DIR__ . '/admin/views/_concerts_table.php'; - require_once __DIR__ . '/view-helpers/select_field.php'; - require_once __DIR__ . '/venue.php'; - require_once __DIR__ . '/concert.php'; - $c = new GiglogAdmin_ConcertsTable(); - $html = $c->render(); - return ($html); + $c = new GiglogAdmin_ConcertsTable(); + return $c->render(); } add_shortcode('getconcerts', 'display_giglog'); |