PluginProbe
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager / 1.2
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager v1.2
10.56 1.2.1 10 10.1 10.2 10.3 10.31 10.32 10.33 10.34 10.50 10.51 10.52 10.53 10.55 9.0 9.0.1 9.4 trunk 1.0.0 1.1 1.2
easy-code-manager / controllers / default.php

default.php in FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager 1.2, at controllers/default.php

50 lines 855 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 *
4 *
5 */
6
7 /**
8 * The controller is the future controller that
9 * will be used when there is no action neeeded
10 * to be talked when outputs the view!
11 *
12 * @author CJT Team
13 * @since version 6.0
14 */
15 class CJTDefaultController extends CJTController {
16
17 /**
18 * put your comment there...
19 *
20 */
21 public function dashboardMetaboxAction() {
22 // Create View.
23 $view = CJTView::getInstance('dashboard/metabox/statistics');
24 $view->display('default');
25 }
26
27 /**
28 * put your comment there...
29 *
30 */
31 public function displayAction() {
32 echo parent::displayAction();
33 }
34
35 /**
36 * Uninstall CJT Plugin
37 * installaion flags, setup-flags
38 * and user data!
39 *
40 * @return void
41 */
42 public function uninstallAction() {
43 // Initializing!
44 $model = CJTModel::getInstance('uninstall');
45 // Uninstall everything!
46 $model->expressUninstall();
47 }
48
49 } // End class.
50