PluginProbe
CSS & JavaScript Toolbox / 8.2
CSS & JavaScript Toolbox v8.2
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
← All changes | views/backups/manager/view.php +21 -21 108.2 View file →
@@ -6,74 +6,74 @@
6 6 // Disallow direct access.
7 7 defined('ABSPATH') or die("Access denied");
8 8
9 9 /**
10 -*
11 -*
10 +*
11 +*
12 12 * The method is resposible for selecting the correct template
13 13 * and initialize template vars.
14 -*
14 +*
15 15 * @author Ahmed Said
16 16 * @version 6
17 17 */
18 18 class CJTBackupsManagerView extends CJTView {
19 -
19 +
20 20 /**
21 21 * put your comment there...
22 - *
22 + *
23 23 * @var mixed
24 24 */
25 25 public $backups = array();
26 -
26 +
27 27 /**
28 28 * put your comment there...
29 - *
29 + *
30 30 * @var mixed
31 31 */
32 32 public $controllerName = '';
33 -
33 +
34 34 /**
35 35 * put your comment there...
36 - *
36 + *
37 37 * @var mixed
38 38 */
39 39 public $currentBackup = null;
40 -
40 +
41 41 /**
42 42 * Output Add New Block markups.
43 - *
43 + *
44 44 * @return void
45 45 */
46 46 public function display() {
47 47 echo $this->getTemplate('default');
48 48 }
49 -
49 +
50 50 /**
51 - * Output JavaScript files requirred to Backups view to run.
52 - *
51 + * Output Javascript files requirred to Backups view to run.
52 + *
53 53 * @return void
54 54 */
55 55 public static function enququeScripts() {
56 - // Import all required JavaScript with localization.
56 + // Import all required Javascript with localization.
57 57 self::useScripts(__CLASS__,
58 - 'jquery',
59 - 'framework:js:ui:{CJT-}jquery.link-progress',
58 + 'jquery',
59 + 'framework:js:ui:{CJT-}jquery.link-progress',
60 60 'views:backups:manager:public:js:{CJT-}backups'
61 61 );
62 62 }
63 -
63 +
64 64 /**
65 65 * Output CSS files required to Backups view.
66 - *
66 + *
67 67 * @return void
68 68 */
69 69 public static function enququeStyles() {
70 70 self::useStyles(__CLASS__,
71 - 'framework:css:{CJT-}forms',
71 + 'framework:css:{CJT-}forms',
72 72 'views:backups:manager:public:css:{CJT-}backups'
73 73 );
74 74 }
75 -
75 +
76 76 } // End class.
77 77
78 78 // Hookable!!
79 79 CJTBackupsManagerView::define('CJTBackupsManagerView');