Tealium_Tags - Version 0.4.1

Version Notes

0.4.1 - added simple discount array
0.4.0 - fix for individual discounts and number formats
0.3.1 - fix for configurable product arrays
0.3.0 - fix for missing support message
0.2.0 - fix for product page tag syntax
0.1.0 - initial release

Download this release

Release Info

Developer Tealium Inc.
Extension Tealium_Tags
Version 0.4.1
Comparing to
See all releases


Code changes from version 0.3.0 to 0.4.1

app/design/frontend/base/default/template/tealium_tags/checkout_cart_index.phtml CHANGED
@@ -1,41 +1,41 @@
1
- <?php
2
-
3
- $helper = Mage::helper('tealium_tags');
4
- $store = Mage::app()->getStore();
5
-
6
- if (!$helper->isEnabled($store)) {
7
- return; // not enabled, no javascript inserted
8
- }
9
-
10
- $quote = Mage::helper('checkout')->getQuote();
11
-
12
- $ids = array();
13
- $skus = array();
14
- $names = array();
15
- $qtys = array();
16
- $prices = array();
17
-
18
- foreach ($quote->getItemsCollection() as $item) {
19
- $ids[] = $item->getProductId();
20
- $skus[] = $item->getSku();
21
- $names[] = $item->getName();
22
- $qtys[] = $item->getQty();
23
- $prices[] = $item->getPrice();
24
- }
25
-
26
- ?>
27
-
28
- <!-- Tealium Checkout_Cart javascript -->
29
- <script type="text/javascript">
30
- var utag_data={
31
- site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
32
- site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
33
- page_name: "cart index",
34
- page_type: "cart",
35
- product_id: ["<?php echo implode('","', $ids) ?>"],
36
- product_sku: ["<?php echo implode('","', $skus) ?>"],
37
- product_name: ["<?php echo implode('","', $names) ?>"],
38
- product_quantity: ["<?php echo implode('","', $qtys) ?>"],
39
- product_list_price: ["<?php echo implode('","', $prices) ?>"]
40
- };
41
  </script>
1
+ <?php
2
+
3
+ $helper = Mage::helper('tealium_tags');
4
+ $store = Mage::app()->getStore();
5
+
6
+ if (!$helper->isEnabled($store)) {
7
+ return; // not enabled, no javascript inserted
8
+ }
9
+
10
+ $quote = Mage::helper('checkout')->getQuote();
11
+
12
+ $ids = array();
13
+ $skus = array();
14
+ $names = array();
15
+ $qtys = array();
16
+ $prices = array();
17
+
18
+ foreach ($quote->getAllVisibleItems() as $item) {
19
+ $ids[] = $item->getProductId();
20
+ $skus[] = $item->getSku();
21
+ $names[] = $item->getName();
22
+ $qtys[] = number_format($item->getQty(),0);
23
+ $prices[] = number_format($item->getPrice(),2);
24
+ }
25
+
26
+ ?>
27
+
28
+ <!-- Tealium Checkout_Cart javascript -->
29
+ <script type="text/javascript">
30
+ var utag_data={
31
+ site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
32
+ site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
33
+ page_name: "cart index",
34
+ page_type: "cart",
35
+ product_id: ["<?php echo implode('","', $ids) ?>"],
36
+ product_sku: ["<?php echo implode('","', $skus) ?>"],
37
+ product_name: ["<?php echo implode('","', $names) ?>"],
38
+ product_quantity: ["<?php echo implode('","', $qtys) ?>"],
39
+ product_list_price: ["<?php echo implode('","', $prices) ?>"]
40
+ };
41
  </script>
app/design/frontend/base/default/template/tealium_tags/checkout_onepage.phtml CHANGED
@@ -1,41 +1,41 @@
1
- <?php
2
-
3
- $helper = Mage::helper('tealium_tags');
4
- $store = Mage::app()->getStore();
5
-
6
- if (!$helper->isEnabled($store)) {
7
- return; // not enabled, no javascript inserted
8
- }
9
-
10
- $quote = Mage::helper('checkout')->getQuote();
11
-
12
- $ids = array();
13
- $skus = array();
14
- $names = array();
15
- $qtys = array();
16
- $prices = array();
17
-
18
- foreach ($quote->getItemsCollection() as $item) {
19
- $ids[] = $item->getProductId();
20
- $skus[] = $item->getSku();
21
- $names[] = $item->getName();
22
- $qtys[] = $item->getQty();
23
- $prices[] = $item->getPrice();
24
- }
25
-
26
- ?>
27
-
28
- <!-- Tealium Checkout javascript -->
29
- <script type="text/javascript">
30
- var utag_data={
31
- site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
32
- site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
33
- page_name: "<?php echo $this->getLayout()->getBlock('head')->getTitle(); ?>",
34
- page_type: "checkout",
35
- product_id: ["<?php echo implode('","', $ids) ?>"],
36
- product_sku: ["<?php echo implode('","', $skus) ?>"],
37
- product_name: ["<?php echo implode('","', $names) ?>"],
38
- product_quantity: ["<?php echo implode('","', $qtys) ?>"],
39
- product_list_price: ["<?php echo implode('","', $prices) ?>"]
40
- };
41
  </script>
1
+ <?php
2
+
3
+ $helper = Mage::helper('tealium_tags');
4
+ $store = Mage::app()->getStore();
5
+
6
+ if (!$helper->isEnabled($store)) {
7
+ return; // not enabled, no javascript inserted
8
+ }
9
+
10
+ $quote = Mage::helper('checkout')->getQuote();
11
+
12
+ $ids = array();
13
+ $skus = array();
14
+ $names = array();
15
+ $qtys = array();
16
+ $prices = array();
17
+
18
+ foreach ($quote->getAllVisibleItems() as $item) {
19
+ $ids[] = $item->getProductId();
20
+ $skus[] = $item->getSku();
21
+ $names[] = $item->getName();
22
+ $qtys[] = number_format($item->getQty(),0);
23
+ $prices[] = number_format($item->getPrice(),2);
24
+ }
25
+
26
+ ?>
27
+
28
+ <!-- Tealium Checkout javascript -->
29
+ <script type="text/javascript">
30
+ var utag_data={
31
+ site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
32
+ site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
33
+ page_name: "<?php echo $this->getLayout()->getBlock('head')->getTitle(); ?>",
34
+ page_type: "checkout",
35
+ product_id: ["<?php echo implode('","', $ids) ?>"],
36
+ product_sku: ["<?php echo implode('","', $skus) ?>"],
37
+ product_name: ["<?php echo implode('","', $names) ?>"],
38
+ product_quantity: ["<?php echo implode('","', $qtys) ?>"],
39
+ product_list_price: ["<?php echo implode('","', $prices) ?>"]
40
+ };
41
  </script>
app/design/frontend/base/default/template/tealium_tags/checkout_success.phtml CHANGED
@@ -1,53 +1,74 @@
1
- <?php
2
-
3
- $helper = Mage::helper('tealium_tags');
4
- $store = Mage::app()->getStore();
5
-
6
- if (!$helper->isEnabled($store)) {
7
- return; // not enabled, no javascript inserted
8
- }
9
-
10
- $order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
11
-
12
- $ids = array();
13
- $skus = array();
14
- $names = array();
15
- $qtys = array();
16
- $prices = array();
17
-
18
- foreach($order->getAllItems() as $item) {
19
-
20
- $ids[] = $item->getProductId();
21
- $skus[] = $item->getSku();
22
- $names[] = $item->getName();
23
- $qtys[] = $item->getQtyOrdered();
24
- $prices[] = $item->getPrice();
25
- }
26
-
27
- ?>
28
-
29
- <!-- Tealium Checkout Success javascript -->
30
- <script type="text/javascript">
31
- var utag_data={
32
- site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
33
- site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
34
- page_name: "cart success",
35
- page_type: "cart",
36
- product_id: ["<?php echo implode('","', $ids) ?>"],
37
- product_sku: ["<?php echo implode('","', $skus) ?>"],
38
- product_name: ["<?php echo implode('","', $names) ?>"],
39
- product_quantity: ["<?php echo implode('","', $qtys) ?>"],
40
- product_list_price: ["<?php echo implode('","', $prices) ?>"],
41
- order_id: "<?php echo $order->getIncrementId(); ?>",
42
- order_subtotal: "<?php echo $order->getSubtotal(); ?>",
43
- order_payment_type: "<?php echo $order->getPayment() ? $order->getPayment()->getMethodInstance()->getTitle() : 'unknown'; ?>",
44
- order_total: "<?php echo $order->getGrandTotal(); ?>",
45
- customer_email: "<?php echo $order->getCustomerEmail(); ?>",
46
- order_discount: "<?php echo $order->getDiscountAmount(); ?>",
47
- order_shipping: "<?php echo $order->getShippingAmount(); ?>",
48
- order_tax: "<?php echo $order->getTaxAmount(); ?>",
49
- order_currency: "<?php echo $order->getOrderCurrencyCode(); ?>"
50
- };
51
- </script>
52
-
53
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $helper = Mage::helper('tealium_tags');
4
+ $store = Mage::app()->getStore();
5
+
6
+ if (!$helper->isEnabled($store)) {
7
+ return; // not enabled, no javascript inserted
8
+ }
9
+
10
+ $order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
11
+
12
+ $ids = array();
13
+ $skus = array();
14
+ $names = array();
15
+ $qtys = array();
16
+ $prices = array();
17
+ $discounts = array();
18
+ $discount_quantity = array();
19
+
20
+ foreach($order->getAllVisibleItems() as $item) {
21
+
22
+ $ids[] = $item->getProductId();
23
+ $skus[] = $item->getSku();
24
+ $names[] = $item->getName();
25
+ $qtys[] = number_format($item->getQtyOrdered(),0);
26
+ $prices[] = number_format($item->getPrice(),2);
27
+ $discount = number_format($item->getDiscountAmount(),2);
28
+ $discounts[] = $discount;
29
+ $applied_rules = explode(",", $item->getAppliedRuleIds());
30
+ $discount_object = array();
31
+ foreach ($applied_rules as $rule) {
32
+ $quantity = number_format(Mage::getModel('salesrule/rule')->load($rule)->getDiscountQty(),0);
33
+ $amount = number_format(Mage::getModel('salesrule/rule')->load($rule)->getDiscountAmount(),2);
34
+ $type = Mage::getModel('salesrule/rule')->load($rule)->getSimpleAction();
35
+ $discount_object[] = "{\"rule\":\"$rule\",\"quantity\":\"$quantity\",\"amount\":\"$amount\",\"$type\"}";
36
+ echo "<!--"; echo print_r(Mage::getModel('salesrule/rule')->load($rule)->getData()); echo "-->";
37
+ }
38
+ $discount_quantity[] = "{\"product_id\":\"" . $item->getProductId() .
39
+ "\",\"total_discount\":\"" . $discount .
40
+ "\", \"discounts\":[" . implode(",",$discount_object) . "]}";
41
+
42
+ }
43
+
44
+ ?>
45
+
46
+ <!-- Tealium Checkout Success javascript -->
47
+ <script type="text/javascript">
48
+ var utag_data={
49
+ site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
50
+ site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
51
+ page_name: "cart success",
52
+ page_type: "cart",
53
+ product_discount: ["<?php echo implode('","', $discounts) ?>"];
54
+ product_discounts: [<?php echo implode(",", $discount_quantity) ?>],
55
+ product_id: ["<?php echo implode('","', $ids) ?>"],
56
+ product_sku: ["<?php echo implode('","', $skus) ?>"],
57
+ product_name: ["<?php echo implode('","', $names) ?>"],
58
+ product_quantity: ["<?php echo implode('","', $qtys) ?>"],
59
+ product_list_price: ["<?php echo implode('","', $prices) ?>"],
60
+ order_id: "<?php echo $order->getIncrementId(); ?>",
61
+ order_subtotal: "<?php echo number_format($order->getSubtotal(),2); ?>",
62
+ order_payment_type: "<?php echo $order->getPayment() ? $order->getPayment()->getMethodInstance()->getTitle() : 'unknown'; ?>",
63
+ order_total: "<?php echo number_format($order->getGrandTotal(),2); ?>",
64
+ customer_email: "<?php echo $order->getCustomerEmail(); ?>",
65
+ order_discount: "<?php echo number_format($order->getDiscountAmount(),2); ?>",
66
+ order_shipping: "<?php echo number_format($order->getShippingAmount(),2); ?>",
67
+ order_tax: "<?php echo number_format($order->getTaxAmount(),2); ?>",
68
+ order_currency: "<?php echo number_format($order->getOrderCurrencyCode(),2); ?>"
69
+ };
70
+ </script>
71
+
72
+
73
+
74
+
app/design/frontend/base/default/template/tealium_tags/product.phtml CHANGED
@@ -1,29 +1,31 @@
1
- <?php
2
-
3
- $helper = Mage::helper('tealium_tags');
4
- $store = Mage::app()->getStore();
5
-
6
- if (!$helper->isEnabled($store)) {
7
- return; // not enabled, no javascript inserted
8
- }
9
-
10
- $_product = $this->getProduct();
11
- $_category = Mage::registry('current_category');
12
- ?>
13
-
14
- <!-- Tealium Product javascript -->
15
- <script type="text/javascript">
16
- var utag_data={
17
- site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
18
- site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
19
- page_name: "<?php echo $_product->getName(); ?>",
20
- page_type: "product",
21
- product_id: ["<?php echo $_product->getId(); ?>"],
22
- product_sku: ["<?php echo $_product->getSku(); ?>"],
23
- product_name: ["<?php echo $_product->getName(); ?>"],
24
- product_brand: ["<?php echo $_product->getBrand(); ?>"],
25
- product_category: ["<?php echo $_category ? $_category->getName() : 'no_category'; ?>"],
26
- <?php if ($_product->getSpecialPrice()!='') echo 'product_unit_price: ["'.$_product->getSpecialPrice() .'"],'; ?>
27
- product_list_price: ["<?php echo $_product->getPrice(); ?>"]
28
- };
29
- </script>
 
 
1
+ <?php
2
+
3
+ $helper = Mage::helper('tealium_tags');
4
+ $store = Mage::app()->getStore();
5
+
6
+ if (!$helper->isEnabled($store)) {
7
+ return; // not enabled, no javascript inserted
8
+ }
9
+
10
+ $_product = $this->getProduct();
11
+ $_category = Mage::registry('current_category');
12
+
13
+
14
+ ?>
15
+
16
+ <!-- Tealium Product javascript -->
17
+ <script type="text/javascript">
18
+ var utag_data={
19
+ site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
20
+ site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
21
+ page_name: "<?php echo $_product->getName(); ?>",
22
+ page_type: "product",
23
+ product_id: ["<?php echo $_product->getId(); ?>"],
24
+ product_sku: ["<?php echo $_product->getSku(); ?>"],
25
+ product_name: ["<?php echo $_product->getName(); ?>"],
26
+ product_brand: ["<?php echo $_product->getBrand(); ?>"],
27
+ product_category: ["<?php echo $_category ? $_category->getName() : 'no_category'; ?>"],
28
+ <?php if ($_product->getSpecialPrice()!='') echo 'product_unit_price: ["'.number_format($_product->getSpecialPrice(),2) .'"],'; ?>
29
+ product_list_price: ["<?php echo number_format($_product->getPrice(),2); ?>"]
30
+ };
31
+ </script>
app/design/frontend/base/default/template/tealium_tags/product_send.phtml CHANGED
@@ -1,32 +1,32 @@
1
- <?php
2
-
3
- $helper = Mage::helper('tealium_tags');
4
- $store = Mage::app()->getStore();
5
-
6
- if (!$helper->isEnabled($store)) {
7
- return; // not enabled, no javascript inserted
8
- }
9
-
10
- $_product_id = $this->getProductId();
11
- $_category_id = $this->getCategoryId();
12
-
13
- $_product = Mage::getModel('catalog/product')->load($_product_id);;
14
- $_category = Mage::getModel('catalog/category')->load($_category_id);;
15
- ?>
16
-
17
- <!-- Tealium Send Friend javascript -->
18
- <script type="text/javascript">
19
- var utag_data={
20
- site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
21
- site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
22
- page_name: "<?php echo $_product->getName(); ?>",
23
- page_type: "product send",
24
- product_id: ["<?php echo $_product->getId(); ?>"],
25
- product_sku: ["<?php echo $_product->getSku(); ?>"],
26
- product_name: ["<?php echo $_product->getName(); ?>"],
27
- product_brand: ["<?php echo $_product->getBrand(); ?>"],
28
- product_category: ["<?php echo $_category ? $_category->getName() : 'no_category'; ?>"],
29
- <?php if ($_product->getSpecialPrice()!='') echo 'product_unit_price: ["'.$_product->getSpecialPrice() .'"],'; ?>
30
- product_list_price: ["<?php echo $_product->getPrice(); ?>"]
31
- };
32
  </script>
1
+ <?php
2
+
3
+ $helper = Mage::helper('tealium_tags');
4
+ $store = Mage::app()->getStore();
5
+
6
+ if (!$helper->isEnabled($store)) {
7
+ return; // not enabled, no javascript inserted
8
+ }
9
+
10
+ $_product_id = $this->getProductId();
11
+ $_category_id = $this->getCategoryId();
12
+
13
+ $_product = Mage::getModel('catalog/product')->load($_product_id);;
14
+ $_category = Mage::getModel('catalog/category')->load($_category_id);;
15
+ ?>
16
+
17
+ <!-- Tealium Send Friend javascript -->
18
+ <script type="text/javascript">
19
+ var utag_data={
20
+ site_region: "<?php echo Mage::app()->getLocale()->getLocaleCode(); ?>",
21
+ site_currency: "<?php echo $store->getCurrentCurrencyCode(); ?>",
22
+ page_name: "<?php echo $_product->getName(); ?>",
23
+ page_type: "product send",
24
+ product_id: ["<?php echo $_product->getId(); ?>"],
25
+ product_sku: ["<?php echo $_product->getSku(); ?>"],
26
+ product_name: ["<?php echo $_product->getName(); ?>"],
27
+ product_brand: ["<?php echo $_product->getBrand(); ?>"],
28
+ product_category: ["<?php echo $_category ? $_category->getName() : 'no_category'; ?>"],
29
+ <?php if ($_product->getSpecialPrice()!='') echo 'product_unit_price: ["'.number_format($_product->getSpecialPrice(),2) .'"],'; ?>
30
+ product_list_price: ["<?php echo number_format($_product->getPrice(),2); ?>"]
31
+ };
32
  </script>
package.xml CHANGED
@@ -1,20 +1,23 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Tealium_Tags</name>
4
- <version>0.3.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Tealum tag management solution</summary>
10
  <description>Tealum tag management solution extension injects the Tealium javascript into your magento pages, and on specific pages injects special javascript so that you can access specific data elements such as product, category or cart data.</description>
11
- <notes>0.3.0 - fix for missing support message&#xD;
 
 
 
12
  0.2.0 - fix for product page tag syntax&#xD;
13
  0.1.0 - initial release</notes>
14
- <authors><author><name>Tealium</name><user>tealium</user><email>adam.corey@tealium.com</email></author></authors>
15
- <date>2013-08-05</date>
16
- <time>20:57:17</time>
17
- <contents><target name="magelocal"><dir name="Tealium"><dir name="Tags"><dir name="Helper"><file name="Data.php" hash="13a0233e34f932751381744f835f9a1d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e6ec5ba973cdb97a9925f02575392865"/><file name="config.xml" hash="c736b55d5e3cc05cbf7bc27fe7a851e5"/><file name="system.xml" hash="417e95d1e84d9fc2f6d1886d308501b8"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tealium_Tags.xml" hash="3d6843433dffefb4600573950a83e765"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="tealium_tags.xml" hash="8cc1b6255886de56c9a31ee63524f618"/></dir><dir name="template"><dir name="tealium_tags"><file name="base.phtml" hash="f09cb5b4e9b123e733e18164fe046673"/><file name="catalog_product_compare_index.phtml" hash="9383606f64e5a5918a42dade26427b82"/><file name="catalogsearch_advanced_result_index.phtml" hash="ae59d3320276e4b8697811317d913400"/><file name="catalogsearch_result_index.phtml" hash="de8a77ac81f67d05d24a174caebf5d7f"/><file name="catalogsearch_term_popular.phtml" hash="a181fe2776e1accee8b6ccb5fce43e89"/><file name="category.phtml" hash="54a9cf9d39d812fde48250dba5ff3b03"/><file name="checkout_cart_index.phtml" hash="18d0a7adafc4ad3428e72d84401c62e4"/><file name="checkout_onepage.phtml" hash="e6d35b3f0ae5d5cc5698671a4d42996e"/><file name="checkout_success.phtml" hash="4bca4247174383c8ae12ffcf6fd93248"/><file name="cms.phtml" hash="01f737af394efe30f12747898c180e04"/><file name="customer.phtml" hash="6c31ee97cab35adfcc8467df0d099d47"/><file name="generic.phtml" hash="9581dfa0fa958b71e5e01391860ec2b7"/><file name="guest_sales.phtml" hash="727f38f359cf83d979cf83ef71fe75a5"/><file name="product.phtml" hash="71bbd4d74633611a60491581db5b7f27"/><file name="product_send.phtml" hash="440e697c1ba12461efd5f18b40fe0940"/><file name="seo.phtml" hash="45d794ab2ce0bf3a9c7568203d3106e7"/><file name="tag_list_index.phtml" hash="a62362c42fc1639c63e7b940b13d4119"/><file name="tag_product_list.phtml" hash="c555519f13540a7cd68966ee0770d85d"/></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Tealium_Tags</name>
4
+ <version>0.4.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Tealum tag management solution</summary>
10
  <description>Tealum tag management solution extension injects the Tealium javascript into your magento pages, and on specific pages injects special javascript so that you can access specific data elements such as product, category or cart data.</description>
11
+ <notes>0.4.1 - added simple discount array&#xD;
12
+ 0.4.0 - fix for individual discounts and number formats&#xD;
13
+ 0.3.1 - fix for configurable product arrays&#xD;
14
+ 0.3.0 - fix for missing support message&#xD;
15
  0.2.0 - fix for product page tag syntax&#xD;
16
  0.1.0 - initial release</notes>
17
+ <authors><author><name>Tealium</name><user>Tealium</user><email>adam.corey@tealium.com</email></author></authors>
18
+ <date>2013-09-13</date>
19
+ <time>22:18:01</time>
20
+ <contents><target name="magelocal"><dir name="Tealium"><dir name="Tags"><dir name="Helper"><file name="Data.php" hash="13a0233e34f932751381744f835f9a1d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="e6ec5ba973cdb97a9925f02575392865"/><file name="config.xml" hash="c736b55d5e3cc05cbf7bc27fe7a851e5"/><file name="system.xml" hash="417e95d1e84d9fc2f6d1886d308501b8"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tealium_Tags.xml" hash="3d6843433dffefb4600573950a83e765"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="tealium_tags.xml" hash="8cc1b6255886de56c9a31ee63524f618"/></dir><dir name="template"><dir name="tealium_tags"><file name="base.phtml" hash="f09cb5b4e9b123e733e18164fe046673"/><file name="catalog_product_compare_index.phtml" hash="9383606f64e5a5918a42dade26427b82"/><file name="catalogsearch_advanced_result_index.phtml" hash="ae59d3320276e4b8697811317d913400"/><file name="catalogsearch_result_index.phtml" hash="de8a77ac81f67d05d24a174caebf5d7f"/><file name="catalogsearch_term_popular.phtml" hash="a181fe2776e1accee8b6ccb5fce43e89"/><file name="category.phtml" hash="54a9cf9d39d812fde48250dba5ff3b03"/><file name="checkout_cart_index.phtml" hash="7a141153bf2541c8773c9e02d8adedb9"/><file name="checkout_onepage.phtml" hash="c4e3f8a6f58ec14ee9af6bdcf12799c5"/><file name="checkout_success.phtml" hash="ed9eb993097d70b771b0c2fd5f5f7b0c"/><file name="cms.phtml" hash="01f737af394efe30f12747898c180e04"/><file name="customer.phtml" hash="6c31ee97cab35adfcc8467df0d099d47"/><file name="generic.phtml" hash="9581dfa0fa958b71e5e01391860ec2b7"/><file name="guest_sales.phtml" hash="727f38f359cf83d979cf83ef71fe75a5"/><file name="product.phtml" hash="0232bd6498afc204a26796bfc0f0e23f"/><file name="product_send.phtml" hash="5fef383640350706dbe195775c6cb6cc"/><file name="seo.phtml" hash="45d794ab2ce0bf3a9c7568203d3106e7"/><file name="tag_list_index.phtml" hash="a62362c42fc1639c63e7b940b13d4119"/><file name="tag_product_list.phtml" hash="c555519f13540a7cd68966ee0770d85d"/></dir></dir></dir></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>