|
4 | 4 | * Ubiquity\core |
5 | 5 | * This class is part of Ubiquity |
6 | 6 | * @author jc |
7 | | - * @version 1.0.1 |
| 7 | + * @version 1.0.2 |
8 | 8 | * |
9 | 9 | */ |
10 | 10 | namespace Ubiquity\core; |
|
21 | 21 | use Ubiquity\cache\CacheManager; |
22 | 22 |
|
23 | 23 | class Framework { |
24 | | - public const version = '2.4.11'; |
| 24 | + public const version = '2.4.12'; |
25 | 25 |
|
26 | 26 | public static function getVersion() { |
27 | 27 | return self::version; |
@@ -82,35 +82,5 @@ public static function getCacheSystem() { |
82 | 82 | public static function getAnnotationsEngine() { |
83 | 83 | return \get_class ( CacheManager::getAnnotationsEngineInstance () ); |
84 | 84 | } |
85 | | - |
86 | | - /** |
87 | | - * Returns an instance of JsUtils initialized with Semantic (for di injection) |
88 | | - * |
89 | | - * @param \Ubiquity\controllers\Controller $controller |
90 | | - * @param array $options |
91 | | - * @return \Ajax\php\ubiquity\JsUtils |
92 | | - * @deprecated use Ajax\php\ubiquity\JsUtils::diSemantic(...) instead. |
93 | | - */ |
94 | | - public static function diSemantic($controller, $options = [ 'defer' => true,'gc' => true ]) { |
95 | | - $jquery = new \Ajax\php\ubiquity\JsUtils ( $options, $controller ); |
96 | | - $jquery->semantic ( new \Ajax\Semantic () ); |
97 | | - $jquery->setAjaxLoader ( "<div class=\"ui active centered inline text loader\">Loading</div>" ); |
98 | | - return $jquery; |
99 | | - } |
100 | | - |
101 | | - /** |
102 | | - * Returns an instance of JsUtils initialized with Bootstrap (for di injection) |
103 | | - * |
104 | | - * @param \Ubiquity\controllers\Controller $controller |
105 | | - * @param array $options |
106 | | - * @return \Ajax\php\ubiquity\JsUtils |
107 | | - * @deprecated use Ajax\php\ubiquity\JsUtils::diBootstrap(...) instead. |
108 | | - */ |
109 | | - public static function diBootstrap($controller, $options = [ 'defer' => true,'gc' => true ]) { |
110 | | - $jquery = new \Ajax\php\ubiquity\JsUtils ( $options, $controller ); |
111 | | - $jquery->bootstrap ( new \Ajax\Bootstrap () ); |
112 | | - $jquery->setAjaxLoader ( "<div class=\"ui active centered inline text loader\">Loading</div>" ); |
113 | | - return $jquery; |
114 | | - } |
115 | 85 | } |
116 | 86 |
|
0 commit comments