| @@ -1,7 +1,7 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | -* | |
| 3 | +* | |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | 6 | // Disallow direct access. |
| 7 | 7 | defined('ABSPATH') or die("Access denied"); |
| @@ -6,57 +6,57 @@ | ||
| 6 | 6 | // Disallow direct access. |
| 7 | 7 | defined('ABSPATH') or die("Access denied"); |
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | -* | |
| 10 | +* | |
| 11 | 11 | */ |
| 12 | 12 | class CJTInstallerInstallView extends CJTView { |
| 13 | - | |
| 13 | + | |
| 14 | 14 | /** |
| 15 | 15 | * put your comment there... |
| 16 | - * | |
| 16 | + * | |
| 17 | 17 | * @var Exception |
| 18 | 18 | */ |
| 19 | 19 | protected $error; |
| 20 | - | |
| 20 | + | |
| 21 | 21 | /** |
| 22 | 22 | * put your comment there... |
| 23 | - * | |
| 23 | + * | |
| 24 | 24 | * @var mixed |
| 25 | 25 | */ |
| 26 | 26 | protected $installedDbVersion; |
| 27 | - | |
| 27 | + | |
| 28 | 28 | /** |
| 29 | 29 | * put your comment there... |
| 30 | - * | |
| 30 | + * | |
| 31 | 31 | * @var mixed |
| 32 | 32 | */ |
| 33 | 33 | protected $installedDbVersionId; |
| 34 | - | |
| 34 | + | |
| 35 | 35 | /** |
| 36 | 36 | * put your comment there... |
| 37 | - * | |
| 37 | + * | |
| 38 | 38 | * @var mixed |
| 39 | 39 | */ |
| 40 | 40 | protected $operations; |
| 41 | - | |
| 41 | + | |
| 42 | 42 | /** |
| 43 | 43 | * put your comment there... |
| 44 | - * | |
| 44 | + * | |
| 45 | 45 | * @var mixed |
| 46 | 46 | */ |
| 47 | 47 | protected $securityToken; |
| 48 | - | |
| 48 | + | |
| 49 | 49 | /** |
| 50 | 50 | * put your comment there... |
| 51 | - * | |
| 51 | + * | |
| 52 | 52 | * @var mixed |
| 53 | 53 | */ |
| 54 | 54 | protected $upgrade; |
| 55 | - | |
| 55 | + | |
| 56 | 56 | /** |
| 57 | 57 | * put your comment there... |
| 58 | - * | |
| 58 | + * | |
| 59 | 59 | * @param mixed $info |
| 60 | 60 | * @return CJTInstallerInstallView |
| 61 | 61 | */ |
| 62 | 62 | public function __construct($info) { |
| @@ -64,12 +64,12 @@ | ||
| 64 | 64 | // Link scripts & styles. |
| 65 | 65 | self::enququeScripts(); |
| 66 | 66 | self::enququeStyles(); |
| 67 | 67 | } |
| 68 | - | |
| 68 | + | |
| 69 | 69 | /** |
| 70 | 70 | * put your comment there... |
| 71 | - * | |
| 71 | + * | |
| 72 | 72 | * @param mixed $tpl |
| 73 | 73 | */ |
| 74 | 74 | public function display($tpl = null) { |
| 75 | 75 | $model = $this->getModel('installer'); |
| @@ -89,9 +89,9 @@ | ||
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * |
| 93 | - * | |
| 93 | + * | |
| 94 | 94 | * @return void |
| 95 | 95 | */ |
| 96 | 96 | public function enququeScripts() { |
| 97 | 97 | // Use related scripts. |
| @@ -101,20 +101,19 @@ | ||
| 101 | 101 | 'framework:js:ajax:{CJT-}cjt-server', |
| 102 | 102 | 'framework:js:{CJTFrameworkInstaller-}installer' |
| 103 | 103 | ); |
| 104 | 104 | } |
| 105 | - | |
| 105 | + | |
| 106 | 106 | /** |
| 107 | 107 | * |
| 108 | - * | |
| 108 | + * | |
| 109 | 109 | * @return void |
| 110 | 110 | */ |
| 111 | 111 | public function enququeStyles() { |
| 112 | 112 | // Use related styles. |
| 113 | - self::useStyles(__CLASS__, | |
| 113 | + self::useStyles(__CLASS__, | |
| 114 | 114 | 'thickbox', |
| 115 | - 'views:installer:install:public:css:{CJTInstaller-}default', | |
| 116 | - 'framework:css:{CJT-}install-notice' | |
| 115 | + 'views:installer:install:public:css:{CJTInstaller-}default' | |
| 117 | 116 | ); |
| 118 | 117 | } |
| 119 | - | |
| 118 | + | |
| 120 | 119 | } // End class. |