PluginProbe
Photonic Gallery & Lightbox for Flickr, SmugMug & Others / 2.41
Photonic Gallery & Lightbox for Flickr, SmugMug & Others v2.41
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 2.41, at Admin/Admin_Page.php

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