PluginProbe
CSS & JavaScript Toolbox / 9.0
CSS & JavaScript Toolbox v9.0
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
css-javascript-toolbox / controllers / default.php

default.php in CSS & JavaScript Toolbox 9.0, at controllers/default.php

50 lines 856 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