File tree 16 files changed +27
-27
lines changed
tests/Application/templates/bundles/SyliusShopBundle
16 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 20
20
"psr/event-dispatcher" : " ^1.0" ,
21
21
"psr/log" : " ^1.1 || ^2.0 || ^3.0" ,
22
22
"setono/composite-compiler-pass" : " ^1.1" ,
23
- "setono/google-analytics-bundle" : " ^1.0.0-alpha.6" ,
24
- "setono/google-analytics-measurement-protocol" : " ^1.0@alpha" ,
23
+ "setono/google-analytics-bundle" : " ^2.0@alpha" ,
24
+ "setono/google-analytics-events" : " ^1.0@beta" ,
25
+ "setono/google-analytics-measurement-protocol" : " ^2.0@beta" ,
25
26
"sylius/channel" : " ^1.0" ,
26
27
"sylius/channel-bundle" : " ^1.0" ,
27
28
"sylius/core" : " ^1.8" ,
Original file line number Diff line number Diff line change 4
4
5
5
namespace Setono \SyliusAnalyticsPlugin \Event ;
6
6
7
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \Item \Item ;
7
+ use Setono \GoogleAnalyticsEvents \Event \Item \Item ;
8
8
9
9
/**
10
10
* Is fired when an item has been resolved. Use this to do common manipulations on the item before it's sent to Google
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \AddPaymentInfoEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \AddPaymentInfoEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Items \ItemsResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Bundle \ResourceBundle \Event \ResourceControllerEvent ;
@@ -62,7 +62,7 @@ public function track(ResourceControllerEvent $resourceControllerEvent): void
62
62
),
63
63
);
64
64
} catch (\Throwable $ e ) {
65
- $ this ->log (AddPaymentInfoEvent::NAME , $ e );
65
+ $ this ->log (AddPaymentInfoEvent::getName () , $ e );
66
66
}
67
67
}
68
68
}
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \AddShippingInfoEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \AddShippingInfoEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Items \ItemsResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Bundle \ResourceBundle \Event \ResourceControllerEvent ;
@@ -64,7 +64,7 @@ public function track(ResourceControllerEvent $resourceControllerEvent): void
64
64
),
65
65
);
66
66
} catch (\Throwable $ e ) {
67
- $ this ->log (AddShippingInfoEvent::NAME , $ e );
67
+ $ this ->log (AddShippingInfoEvent::getName () , $ e );
68
68
}
69
69
}
70
70
}
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \AddToCartEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \AddToCartEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Item \ItemResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Bundle \ResourceBundle \Event \ResourceControllerEvent ;
@@ -71,7 +71,7 @@ public function track(ResourceControllerEvent $resourceControllerEvent): void
71
71
),
72
72
);
73
73
} catch (\Throwable $ e ) {
74
- $ this ->log (AddToCartEvent::NAME , $ e );
74
+ $ this ->log (AddToCartEvent::getName () , $ e );
75
75
}
76
76
}
77
77
}
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \BeginCheckoutEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \BeginCheckoutEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Items \ItemsResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Component \Core \Model \OrderInterface ;
@@ -70,7 +70,7 @@ public function track(RequestEvent $requestEvent): void
70
70
),
71
71
);
72
72
} catch (\Throwable $ e ) {
73
- $ this ->log (BeginCheckoutEvent::NAME , $ e );
73
+ $ this ->log (BeginCheckoutEvent::getName () , $ e );
74
74
}
75
75
}
76
76
}
Original file line number Diff line number Diff line change 5
5
namespace Setono \SyliusAnalyticsPlugin \EventSubscriber ;
6
6
7
7
use Setono \GoogleAnalyticsBundle \Context \ClientIdContextInterface ;
8
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \PurchaseEvent ;
8
+ use Setono \GoogleAnalyticsEvents \Event \PurchaseEvent ;
9
9
use Setono \SyliusAnalyticsPlugin \Message \Command \SendPurchaseEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Items \ItemsResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \PurchaseEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \PurchaseEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Items \ItemsResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Component \Core \Model \OrderInterface ;
@@ -87,7 +87,7 @@ public function track(RequestEvent $requestEvent): void
87
87
),
88
88
);
89
89
} catch (\Throwable $ e ) {
90
- $ this ->log (PurchaseEvent::NAME , $ e );
90
+ $ this ->log (PurchaseEvent::getName () , $ e );
91
91
}
92
92
}
93
93
}
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \ViewCartEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \ViewCartEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Items \ItemsResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Component \Core \Model \OrderInterface ;
@@ -70,7 +70,7 @@ public function track(RequestEvent $requestEvent): void
70
70
),
71
71
);
72
72
} catch (\Throwable $ e ) {
73
- $ this ->log (ViewCartEvent::NAME , $ e );
73
+ $ this ->log (ViewCartEvent::getName () , $ e );
74
74
}
75
75
}
76
76
}
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \ViewItemListEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \ViewItemListEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Event \ItemListViewed ;
11
11
use Setono \SyliusAnalyticsPlugin \Resolver \Item \ItemResolverInterface ;
12
12
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
@@ -104,7 +104,7 @@ public function trackNative(ResourceControllerEvent $resourceControllerEvent): v
104
104
105
105
$ this ->eventDispatcher ->dispatch (new ClientSideEvent ($ event ));
106
106
} catch (\Throwable $ e ) {
107
- $ this ->log (ViewItemListEvent::NAME , $ e );
107
+ $ this ->log (ViewItemListEvent::getName () , $ e );
108
108
}
109
109
}
110
110
Original file line number Diff line number Diff line change 6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
8
use Setono \GoogleAnalyticsBundle \Event \ClientSideEvent ;
9
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \ViewItemEvent ;
9
+ use Setono \GoogleAnalyticsEvents \Event \ViewItemEvent ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Item \ItemResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Util \FormatAmountTrait ;
12
12
use Sylius \Bundle \ResourceBundle \Event \ResourceControllerEvent ;
@@ -54,7 +54,7 @@ public function track(ResourceControllerEvent $resourceControllerEvent): void
54
54
),
55
55
);
56
56
} catch (\Throwable $ e ) {
57
- $ this ->log (ViewItemEvent::NAME , $ e );
57
+ $ this ->log (ViewItemEvent::getName () , $ e );
58
58
}
59
59
}
60
60
}
Original file line number Diff line number Diff line change 4
4
5
5
namespace Setono \SyliusAnalyticsPlugin \Message \Command ;
6
6
7
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \PurchaseEvent ;
7
+ use Setono \GoogleAnalyticsEvents \Event \PurchaseEvent ;
8
8
9
9
final class SendPurchaseEvent implements CommandInterface
10
10
{
Original file line number Diff line number Diff line change 5
5
namespace Setono \SyliusAnalyticsPlugin \Resolver \Item ;
6
6
7
7
use Psr \EventDispatcher \EventDispatcherInterface ;
8
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \Item \Item ;
8
+ use Setono \GoogleAnalyticsEvents \Event \Item \Item ;
9
9
use Setono \SyliusAnalyticsPlugin \Event \ItemResolved ;
10
10
use Setono \SyliusAnalyticsPlugin \Resolver \Brand \BrandResolverInterface ;
11
11
use Setono \SyliusAnalyticsPlugin \Resolver \Category \CategoryResolverInterface ;
Original file line number Diff line number Diff line change 4
4
5
5
namespace Setono \SyliusAnalyticsPlugin \Resolver \Item ;
6
6
7
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \Item \Item ;
7
+ use Setono \GoogleAnalyticsEvents \Event \Item \Item ;
8
8
use Sylius \Component \Core \Model \OrderItemInterface ;
9
9
use Sylius \Component \Core \Model \ProductInterface ;
10
10
Original file line number Diff line number Diff line change 4
4
5
5
namespace Setono \SyliusAnalyticsPlugin \Resolver \Items ;
6
6
7
- use Setono \GoogleAnalyticsMeasurementProtocol \ Request \ Body \Event \Item \Item ;
7
+ use Setono \GoogleAnalyticsEvents \Event \Item \Item ;
8
8
use Sylius \Component \Core \Model \OrderInterface ;
9
9
10
10
interface ItemsResolverInterface
Original file line number Diff line number Diff line change 28
28
{{ sylius_template_event(' sylius.shop.layout.before_body' ) }}
29
29
<div class =" pusher" data-route =" {{ app .request .get (' _route' ) }}" >
30
30
{% block top %}
31
- <div id =" menu" class =" top-menu" >
32
- <a href =" #" class =" top-menu__link" >{{ ' sylius.top_bar' | trans }}</a >
33
- <div class =" top-bar" >{{ sylius_template_event(' sylius.shop.layout.topbar' ) }}</div >
31
+ <div id =" menu" class =" ui large sticky inverted stackable menu" >
32
+ {{ sylius_template_event(' sylius.shop.layout.topbar' ) }}
34
33
</div >
35
34
{% endblock %}
36
35
You can’t perform that action at this time.
0 commit comments