PluginProbe
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! / 3.8.0
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! v3.8.0
3.8.0 3.7.5 3.7.4 3.7.3 3.7.2 1-final 3.7.1 3.7.0 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 All 112 releases
← All changes | includes/Utils/Base.php +2 -2 3.7.33.8.0 View file →
@@ -1,9 +1,9 @@
1 1 <?php
2 2
3 3 namespace Templately\Utils;
4 4
5 -use Templately\Core\Module;
5 +use Templately\Core\Platform_Registry;
6 6 use Templately\Core\Platform;
7 7
8 8 abstract class Base {
9 9 /**
@@ -66,9 +66,9 @@
66 66 * @param string $id
67 67 * @return Platform|null
68 68 */
69 69 public function platform( $id ){
70 - $platform = Module::get_instance()->active( $id );
70 + $platform = Platform_Registry::get_instance()->active( $id );
71 71 if( ! is_null( $platform ) ) {
72 72 return $platform;
73 73 }
74 74