PluginProbe
MaxButtons – Create buttons / 6.7
MaxButtons – Create buttons v6.7
6.23 6.24 6.25 6.26 6.26.1 6.27 6.28 6.3 6.4 6.5 6.6 6.7 6.8 6.9 7.0 7.1 7.1.1 7.1.2 7.1.3 7.10 7.11 7.13 7.13.1 7.13.2 7.13.3 All 100 releases
maxbuttons / includes / maxbuttons-controller.php

maxbuttons-controller.php in MaxButtons – Create buttons 6.7, at includes/maxbuttons-controller.php

35 lines 793 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined('ABSPATH') or die('No direct access permitted');
3
4 if (isset($_GET['action']) && $_GET['action'] != '') {
5 switch ($_GET['action']) {
6 case 'button':
7 case 'edit':
8 if (isset($_GET["popup"]) && $_GET["popup"] == true) // bugs with save function to name something
9 include_once 'button_editor_popup.php';
10 else
11 include_once 'maxbuttons-button.php';
12 break;
13 case 'copy':
14 include_once 'maxbuttons-copy.php';
15 break;
16 case 'delete':
17 include_once 'maxbuttons-delete.php';
18 break;
19 case 'trash':
20 include_once 'maxbuttons-trash.php';
21 break;
22 case 'restore':
23 include_once 'maxbuttons-restore.php';
24 break;
25
26 default:
27 include_once 'maxbuttons-list.php';
28 break;
29 }
30
31 } else {
32 include_once 'maxbuttons-list.php';
33 }
34
35