PluginProbe
Photonic Gallery & Lightbox for Flickr, SmugMug & Others / 3.36
Photonic Gallery & Lightbox for Flickr, SmugMug & Others v3.36
3.36 3.35 3.34 3.33 2.19 2.20 2.21 2.22 2.23 2.24 2.25 2.26 2.27 2.28 2.29 2.30 2.31 2.32 2.33 2.34 2.40 2.41 2.42 2.43 2.44 All 141 releases
photonic / Admin / Admin_Page.php

Admin_Page.php in Photonic Gallery & Lightbox for Flickr, SmugMug & Others 3.36, at Admin/Admin_Page.php

50 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Photonic_Plugin\Admin;
4
5 abstract class Admin_Page {
6 public function render($header) {
7 $this->start_content();
8 $this->show_header($header);
9 $this->render_content();
10 $this->end_content();
11 }
12
13 abstract public function render_content();
14
15 public function start_content() {
16 ?>
17 <div class="photonic-wrap">
18 <?php
19 }
20
21 public function end_content() {
22 ?>
23 </div>
24 <?php
25 }
26
27 public function show_header($header) {
28 ?>
29 <div class="photonic-waiting"><img src="<?php echo esc_url(PHOTONIC_URL) . 'include/images/downloading-dots.gif'; ?>"
30 alt='waiting'/></div>
31 <header class="photonic-header">
32 <h1>Photonic &ndash; <?php echo wp_kses_post($header); ?></h1>
33 <div class='donate fix'>
34 <ul>
35 <li class='announcements'><a href='https://aquoid.com/news/'><span class="icon">&nbsp;</span>Announcements</a>
36 </li>
37 <li class='support'><a href='https://wordpress.org/support/plugin/photonic/'><span class="icon">&nbsp;</span>Support</a>
38 </li>
39 <li class='coffee'><a
40 href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=85LSBSV2HKSX4&source=url'><span
41 class="icon">&nbsp;</span>Like Photonic? Buy me a coffee &hellip;</a></li>
42 <li class='rate'><a href='https://wordpress.org/support/plugin/photonic/reviews/'><span
43 class="icon">&nbsp;</span>&hellip; Or Rate it Well!</a></li>
44 </ul>
45 </div><!-- donate -->
46 </header>
47 <?php
48 }
49 }
50