PluginProbe
Depicter — Popup & Slider Builder / 1.9.2
Depicter — Popup & Slider Builder v1.9.2
4.8.1 trunk 1.0.0 1.1.0 1.1.2 1.1.4 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.5 1.3.8 1.5.0 1.5.1 1.5.2 1.5.5 1.6.0 1.6.1 1.6.2 1.7.0 All 76 releases
← All changes | app/src/DataSources/ServiceProvider.php +0 -15 trunk1.9.2 View file →
@@ -2,10 +2,8 @@
2 2 namespace Depicter\DataSources;
3 3
4 4 use Depicter\DataSources\Tags\ACF;
5 5 use Depicter\DataSources\Tags\Catalog;
6 -use Depicter\DataSources\Tags\GooglePlace;
7 -use Depicter\DataSources\Tags\GooglePlaceReview;
8 6 use Depicter\DataSources\Tags\Legacy;
9 7 use Depicter\DataSources\Tags\Post;
10 8 use Depicter\DataSources\Tags\MetaBoxIO;
11 9 use Depicter\DataSources\Tags\MetaFields;
@@ -43,13 +41,8 @@
43 41 $container[ 'depicter.dataSources.handPickedProducts' ] = function () {
44 42 return new HandPickedProducts();
45 43 };
46 44
47 - // register Google Places Reviews dataSource
48 - $container[ 'depicter.dataSources.google.places' ] = function () {
49 - return new GooglePlaces();
50 - };
51 -
52 45 // register catalog dataSource
53 46 $container[ 'depicter.dataSources.catalogs' ] = function () {
54 47 return new Catalogs();
55 48 };
@@ -88,16 +81,8 @@
88 81 };
89 82
90 83 $container[ 'depicter.dataSources.tags.catalog' ] = function () {
91 84 return new Catalog();
92 - };
93 -
94 - $container[ 'depicter.dataSources.tags.googlePlace' ] = function () {
95 - return new GooglePlace();
96 - };
97 -
98 - $container[ 'depicter.dataSources.tags.googlePlaceReview' ] = function () {
99 - return new GooglePlaceReview();
100 85 };
101 86 }
102 87
103 88 /**