PluginProbe
CSS & JavaScript Toolbox / 6.0.11
CSS & JavaScript Toolbox v6.0.11
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 6.0.11, at controllers/default.php

40 lines 656 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 displayAction() {
22 echo parent::displayAction();
23 }
24
25 /**
26 * Uninstall CJT Plugin
27 * installaion flags, setup-flags
28 * and user data!
29 *
30 * @return void
31 */
32 public function uninstallAction() {
33 // Initializing!
34 $model =& CJTModel::getInstance('uninstall');
35 // Uninstall everything!
36 $model->expressUninstall();
37 }
38
39 } // End class.
40