Version Notes
No License Key.
Only one time Charge (No Charge after Purchase)
Fully Customizable and Non-Encrypted Code. Free Support Supporting Magento Versions 1.7 +
Note- Before Installing the extension, please take the backup of the website
Download this release
Release Info
| Developer | Cinas Technologies |
| Extension | cinasstore_googleanalytics |
| Version | 0.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 0.1.0 to 0.1.1
app/code/local/Cinasstore/Googleanalytics/Block/Adminhtml/Dashboard.php
CHANGED
|
@@ -48,15 +48,16 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 48 |
$this->CountryVisits = $this->showCountryVisits($processor, $this->ga_profile_id);
|
| 49 |
$this->TopPages = $this->showTopPages($processor, $this->ga_profile_id);
|
| 50 |
$this->PageVisitHistory = $this->getPageVisitHistory($processor, $this->ga_profile_id);
|
| 51 |
-
|
| 52 |
-
|
|
|
|
| 53 |
return $html;
|
| 54 |
}
|
| 55 |
|
| 56 |
public function showTopReferrer($ga, $ga_profile_id)
|
| 57 |
{
|
| 58 |
|
| 59 |
-
$ga->requestReportData($ga_profile_id, array('source','medium'),array('visits'),'-visits', '', '', '', 1,5);
|
| 60 |
$results = $ga->getResults();
|
| 61 |
|
| 62 |
foreach($results as $result)
|
|
@@ -108,7 +109,7 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 108 |
|
| 109 |
var options = {
|
| 110 |
page: 'enable',
|
| 111 |
-
pageSize:
|
| 112 |
width: '100%'
|
| 113 |
};
|
| 114 |
|
|
@@ -119,9 +120,75 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 119 |
return $code;
|
| 120 |
}
|
| 121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
public function getPageVisitHistory($ga, $ga_profile_id)
|
| 123 |
{
|
| 124 |
-
$ga->requestReportData($ga_profile_id, 'pagePath', array('pageviews', 'uniquePageviews', 'exitRate', 'avgTimeOnPage', 'entranceBounceRate'), null, 'pagePath == \'/\'');
|
| 125 |
$results = $ga->getResults();
|
| 126 |
|
| 127 |
foreach($results as $result)
|
|
@@ -131,6 +198,19 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 131 |
$ga_dash_top_pages .="['Avg time on page','".$this->secondMinute($result->getAvgtimeonpage())."'],";
|
| 132 |
$ga_dash_top_pages .="['Bounce rate','".round($result->getEntrancebouncerate(), 2)."'],";
|
| 133 |
$ga_dash_top_pages .="['Exit rate','".round($result->getExitrate(), 2)."%'],";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
}
|
| 135 |
|
| 136 |
|
|
@@ -146,7 +226,7 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 146 |
|
| 147 |
var options = {
|
| 148 |
page: 'enable',
|
| 149 |
-
pageSize:
|
| 150 |
width: '100%'
|
| 151 |
};
|
| 152 |
|
|
@@ -171,7 +251,7 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 171 |
|
| 172 |
public function showCountryVisits($ga, $ga_profile_id)
|
| 173 |
{
|
| 174 |
-
$ga->requestReportData($ga_profile_id, array('country'),array('visits'), 'visits');
|
| 175 |
$results = $ga->getResults();
|
| 176 |
|
| 177 |
|
|
@@ -179,22 +259,22 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 179 |
google.load("visualization", "1", {packages:["geochart"]});
|
| 180 |
google.setOnLoadCallback(ga_dash_drawmap);
|
| 181 |
function ga_dash_drawmap() {
|
| 182 |
-
var
|
| 183 |
['Country', 'Visits'],";
|
| 184 |
$countryVar = '';
|
| 185 |
foreach($results as $result) {
|
| 186 |
-
$countryVar.='
|
| 187 |
}
|
| 188 |
|
| 189 |
$code .= $countryVar."
|
| 190 |
]);
|
| 191 |
|
| 192 |
-
var
|
| 193 |
-
|
| 194 |
-
|
| 195 |
|
| 196 |
var chart = new google.visualization.GeoChart(document.getElementById('ga_dash_mapdata'));
|
| 197 |
-
chart.draw(
|
| 198 |
|
| 199 |
}";
|
| 200 |
|
|
@@ -205,7 +285,7 @@ class Cinasstore_Googleanalytics_Block_Adminhtml_Dashboard extends Mage_Adminhtm
|
|
| 205 |
public function showPageViews($ga, $ga_profile_id)
|
| 206 |
{
|
| 207 |
|
| 208 |
-
$ga->requestReportData($ga_profile_id, array('date'),array('pageviews'), 'date');
|
| 209 |
$results = $ga->getResults();
|
| 210 |
$code='
|
| 211 |
google.load("visualization", "1", {packages:["corechart"]});
|
| 48 |
$this->CountryVisits = $this->showCountryVisits($processor, $this->ga_profile_id);
|
| 49 |
$this->TopPages = $this->showTopPages($processor, $this->ga_profile_id);
|
| 50 |
$this->PageVisitHistory = $this->getPageVisitHistory($processor, $this->ga_profile_id);
|
| 51 |
+
$this->PageKeywordSearch = $this->getKeywordSearch($processor, $this->ga_profile_id);
|
| 52 |
+
$this->PageBrowserViews = $this->getBrowserViews($processor, $this->ga_profile_id);
|
| 53 |
+
$html = parent::_toHtml();
|
| 54 |
return $html;
|
| 55 |
}
|
| 56 |
|
| 57 |
public function showTopReferrer($ga, $ga_profile_id)
|
| 58 |
{
|
| 59 |
|
| 60 |
+
$ga->requestReportData($ga_profile_id, array('source','medium'),array('visits'),'-visits', '', '2013-12-25', '2014-01-03', 1,5);
|
| 61 |
$results = $ga->getResults();
|
| 62 |
|
| 63 |
foreach($results as $result)
|
| 109 |
|
| 110 |
var options = {
|
| 111 |
page: 'enable',
|
| 112 |
+
pageSize: 15,
|
| 113 |
width: '100%'
|
| 114 |
};
|
| 115 |
|
| 120 |
return $code;
|
| 121 |
}
|
| 122 |
|
| 123 |
+
public function getBrowserViews($ga, $ga_profile_id)
|
| 124 |
+
{
|
| 125 |
+
$ga->requestReportData($ga_profile_id, array('browser'), array('pageviews','visits'), array('-visits'));
|
| 126 |
+
$results = $ga->getResults();
|
| 127 |
+
foreach($results as $result)
|
| 128 |
+
{
|
| 129 |
+
$ga_dash_browserviews .= "['".$result->getBrowser()."','".$result->getPageviews()."','".$result->getVisits()."'],";
|
| 130 |
+
}
|
| 131 |
+
|
| 132 |
+
$code.='
|
| 133 |
+
google.load("visualization", "1", {packages:["table"]})
|
| 134 |
+
google.setOnLoadCallback(ga_dash_drawBrowserView);
|
| 135 |
+
function ga_dash_drawBrowserView() {
|
| 136 |
+
var data = google.visualization.arrayToDataTable(['."
|
| 137 |
+
['Browser', 'Page Views', 'Visits'],"
|
| 138 |
+
.$ga_dash_browserviews.
|
| 139 |
+
"
|
| 140 |
+
]);
|
| 141 |
+
|
| 142 |
+
var options = {
|
| 143 |
+
page: 'enable',
|
| 144 |
+
pageSize: 10,
|
| 145 |
+
width: '100%'
|
| 146 |
+
};
|
| 147 |
+
|
| 148 |
+
var chart = new google.visualization.Table(document.getElementById('ga_dash_browserdata'));
|
| 149 |
+
chart.draw(data, options);
|
| 150 |
+
|
| 151 |
+
}";
|
| 152 |
+
|
| 153 |
+
return $code;
|
| 154 |
+
}
|
| 155 |
+
|
| 156 |
+
public function getKeywordSearch($ga, $ga_profile_id)
|
| 157 |
+
{
|
| 158 |
+
$ga->requestReportData($ga_profile_id, array('keyword'), array('visits'));
|
| 159 |
+
$results = $ga->getResults();
|
| 160 |
+
foreach($results as $result)
|
| 161 |
+
{
|
| 162 |
+
$ga_dash_top_Keywords .= "['".$result->getKeyword()."','".$result->getVisits()."'],";
|
| 163 |
+
}
|
| 164 |
+
|
| 165 |
+
$code.='
|
| 166 |
+
google.load("visualization", "1", {packages:["table"]})
|
| 167 |
+
google.setOnLoadCallback(ga_dash_drawKeywordHistory);
|
| 168 |
+
function ga_dash_drawKeywordHistory() {
|
| 169 |
+
var data = google.visualization.arrayToDataTable(['."
|
| 170 |
+
['Keyword', 'Visits'],"
|
| 171 |
+
.$ga_dash_top_Keywords.
|
| 172 |
+
"
|
| 173 |
+
]);
|
| 174 |
+
|
| 175 |
+
var options = {
|
| 176 |
+
page: 'enable',
|
| 177 |
+
pageSize: 10,
|
| 178 |
+
width: '100%'
|
| 179 |
+
};
|
| 180 |
+
|
| 181 |
+
var chart = new google.visualization.Table(document.getElementById('ga_dash_keyworddata'));
|
| 182 |
+
chart.draw(data, options);
|
| 183 |
+
|
| 184 |
+
}";
|
| 185 |
+
|
| 186 |
+
return $code;
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
public function getPageVisitHistory($ga, $ga_profile_id)
|
| 190 |
{
|
| 191 |
+
$ga->requestReportData($ga_profile_id, 'pagePath', array('pageviews', 'uniquePageviews', 'exitRate', 'avgTimeOnPage', 'entranceBounceRate', 'organicSearches','itemRevenue','transactionRevenuePerVisit','avgPageLoadTime'), null, 'pagePath == \'/\'', date('Y-m-d'));
|
| 192 |
$results = $ga->getResults();
|
| 193 |
|
| 194 |
foreach($results as $result)
|
| 198 |
$ga_dash_top_pages .="['Avg time on page','".$this->secondMinute($result->getAvgtimeonpage())."'],";
|
| 199 |
$ga_dash_top_pages .="['Bounce rate','".round($result->getEntrancebouncerate(), 2)."'],";
|
| 200 |
$ga_dash_top_pages .="['Exit rate','".round($result->getExitrate(), 2)."%'],";
|
| 201 |
+
$ga_dash_top_pages .="['Organic Searches','".round($result->getOrganicsearches(), 2)."'],";
|
| 202 |
+
$ga_dash_top_pages .="['Revenue','".round($result->getItemrevenue(), 2)."'],";
|
| 203 |
+
$ga_dash_top_pages .="['Revenue/Visit','".round($result->getTransactionrevenuepervisit(), 2)."'],";
|
| 204 |
+
|
| 205 |
+
$returnCode['Page Views'] = number_format($result->getPageviews());
|
| 206 |
+
$returnCode['Unique Views'] = number_format($result->getUniquepageviews());
|
| 207 |
+
$returnCode['Avg time on page'] = $this->secondMinute($result->getAvgtimeonpage());
|
| 208 |
+
$returnCode['Bounce rate'] = number_format($result->getEntrancebouncerate());
|
| 209 |
+
$returnCode['Exit rate'] = round($result->getExitrate(), 2)."%";
|
| 210 |
+
$returnCode['Organic Searches'] = number_format($result->getPageviews());
|
| 211 |
+
$returnCode['Revenue'] = number_format($result->getItemrevenue());
|
| 212 |
+
$returnCode['Revenue/Visit'] = round($result->getTransactionrevenuepervisit(), 2);
|
| 213 |
+
return $returnCode;
|
| 214 |
}
|
| 215 |
|
| 216 |
|
| 226 |
|
| 227 |
var options = {
|
| 228 |
page: 'enable',
|
| 229 |
+
pageSize: 10,
|
| 230 |
width: '100%'
|
| 231 |
};
|
| 232 |
|
| 251 |
|
| 252 |
public function showCountryVisits($ga, $ga_profile_id)
|
| 253 |
{
|
| 254 |
+
$ga->requestReportData($ga_profile_id, array('country'),array('visits'), array('-visits'));
|
| 255 |
$results = $ga->getResults();
|
| 256 |
|
| 257 |
|
| 259 |
google.load("visualization", "1", {packages:["geochart"]});
|
| 260 |
google.setOnLoadCallback(ga_dash_drawmap);
|
| 261 |
function ga_dash_drawmap() {
|
| 262 |
+
var data = google.visualization.arrayToDataTable(['."
|
| 263 |
['Country', 'Visits'],";
|
| 264 |
$countryVar = '';
|
| 265 |
foreach($results as $result) {
|
| 266 |
+
$countryVar.="['".$result->getCountry()."', ".$result->getVisits()."],";
|
| 267 |
}
|
| 268 |
|
| 269 |
$code .= $countryVar."
|
| 270 |
]);
|
| 271 |
|
| 272 |
+
var options = {
|
| 273 |
+
colors: ['white', 'orange'], title:'Geo Location Visits'
|
| 274 |
+
};
|
| 275 |
|
| 276 |
var chart = new google.visualization.GeoChart(document.getElementById('ga_dash_mapdata'));
|
| 277 |
+
chart.draw(data , options);
|
| 278 |
|
| 279 |
}";
|
| 280 |
|
| 285 |
public function showPageViews($ga, $ga_profile_id)
|
| 286 |
{
|
| 287 |
|
| 288 |
+
$ga->requestReportData($ga_profile_id, array('date'),array('pageviews'), 'date', '');
|
| 289 |
$results = $ga->getResults();
|
| 290 |
$code='
|
| 291 |
google.load("visualization", "1", {packages:["corechart"]});
|
app/design/adminhtml/default/default/template/googleanalytics/report.phtml
CHANGED
|
@@ -8,19 +8,39 @@
|
|
| 8 |
</div>
|
| 9 |
<table width="100%" border="0" cellspacing="5">
|
| 10 |
<tr>
|
| 11 |
-
<td
|
| 12 |
<div class="entry-edit">
|
| 13 |
-
<div class="entry-edit-head"><h4>
|
| 14 |
<fieldset>
|
| 15 |
-
<div id="
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
</div>
|
| 18 |
</td>
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
| 20 |
<div class="entry-edit">
|
| 21 |
-
<div class="entry-edit-head"><h4>
|
| 22 |
<fieldset>
|
| 23 |
-
<div id="
|
| 24 |
</fieldset>
|
| 25 |
</div>
|
| 26 |
</td>
|
|
@@ -30,10 +50,13 @@
|
|
| 30 |
<tr>
|
| 31 |
<td width="50%">
|
| 32 |
<div class="entry-edit">
|
| 33 |
-
<div class="entry-edit-head"><h4>
|
| 34 |
<fieldset>
|
| 35 |
-
<div id="
|
|
|
|
|
|
|
| 36 |
</td>
|
|
|
|
| 37 |
<td width="50%">
|
| 38 |
<div class="entry-edit">
|
| 39 |
<div class="entry-edit-head"><h4>Top Pages</h4></div>
|
|
@@ -44,11 +67,32 @@
|
|
| 44 |
</td>
|
| 45 |
</tr>
|
| 46 |
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
<td colspan="2">
|
| 49 |
<div id="ga_dash_mapdata"></div>
|
| 50 |
</td>
|
| 51 |
-
</tr
|
| 52 |
|
| 53 |
</table>
|
| 54 |
|
|
@@ -58,8 +102,9 @@
|
|
| 58 |
<?php
|
| 59 |
echo $this->topReffer;
|
| 60 |
echo $this->PageViews;
|
| 61 |
-
echo $this->PageVisitHistory;
|
| 62 |
echo $this->TopPages;
|
| 63 |
-
echo $this->CountryVisits;
|
|
|
|
|
|
|
| 64 |
?>
|
| 65 |
</script>
|
| 8 |
</div>
|
| 9 |
<table width="100%" border="0" cellspacing="5">
|
| 10 |
<tr>
|
| 11 |
+
<td colspan="2">
|
| 12 |
<div class="entry-edit">
|
| 13 |
+
<div class="entry-edit-head"><h4>Today</h4></div>
|
| 14 |
<fieldset>
|
| 15 |
+
<div id="ga_dash_historydata" class="grid">
|
| 16 |
+
<table width="100%" border="0" rules="all" cellpadding="5">
|
| 17 |
+
<tr>
|
| 18 |
+
<?php
|
| 19 |
+
$colCount=0;
|
| 20 |
+
foreach($this->PageVisitHistory as $key=>$val)
|
| 21 |
+
{
|
| 22 |
+
$colCount = $colCount +1;
|
| 23 |
+
?>
|
| 24 |
+
<td align="center">
|
| 25 |
+
<span style="font-size:18px; font-weight:bold;"><?php echo $val;?></span><br>
|
| 26 |
+
<?php echo $key;?>
|
| 27 |
+
</td>
|
| 28 |
+
<?php
|
| 29 |
+
if($colCount%4==0)
|
| 30 |
+
echo '</tr><tr>';
|
| 31 |
+
}
|
| 32 |
+
?>
|
| 33 |
+
</table>
|
| 34 |
</div>
|
| 35 |
</td>
|
| 36 |
+
</tr>
|
| 37 |
+
|
| 38 |
+
<tr>
|
| 39 |
+
<td colspan="2">
|
| 40 |
<div class="entry-edit">
|
| 41 |
+
<div class="entry-edit-head"><h4>Page Visits</h4></div>
|
| 42 |
<fieldset>
|
| 43 |
+
<div id="chart"></div>
|
| 44 |
</fieldset>
|
| 45 |
</div>
|
| 46 |
</td>
|
| 50 |
<tr>
|
| 51 |
<td width="50%">
|
| 52 |
<div class="entry-edit">
|
| 53 |
+
<div class="entry-edit-head"><h4>Top Referrals</h4></div>
|
| 54 |
<fieldset>
|
| 55 |
+
<div id="ga_dash_rdata" style="height:425px;"></div>
|
| 56 |
+
</fieldset>
|
| 57 |
+
</div>
|
| 58 |
</td>
|
| 59 |
+
|
| 60 |
<td width="50%">
|
| 61 |
<div class="entry-edit">
|
| 62 |
<div class="entry-edit-head"><h4>Top Pages</h4></div>
|
| 67 |
</td>
|
| 68 |
</tr>
|
| 69 |
|
| 70 |
+
<tr>
|
| 71 |
+
<td>
|
| 72 |
+
<div class="entry-edit">
|
| 73 |
+
<div class="entry-edit-head"><h4>Keyword Search <?php echo date('Y-m-d',strtotime('1 month ago'));?> - <?php echo date('Y-m-d');?></h4></div>
|
| 74 |
+
<fieldset>
|
| 75 |
+
<div id="ga_dash_keyworddata"></div>
|
| 76 |
+
</fieldset>
|
| 77 |
+
</div>
|
| 78 |
+
|
| 79 |
+
</td>
|
| 80 |
+
<td>
|
| 81 |
+
<div class="entry-edit">
|
| 82 |
+
<div class="entry-edit-head"><h4>Browser Views <?php echo date('Y-m-d',strtotime('1 month ago'));?> - <?php echo date('Y-m-d');?></h4></div>
|
| 83 |
+
<fieldset>
|
| 84 |
+
<div id="ga_dash_browserdata"></div>
|
| 85 |
+
</fieldset>
|
| 86 |
+
</div>
|
| 87 |
+
|
| 88 |
+
</td>
|
| 89 |
+
</tr>
|
| 90 |
+
|
| 91 |
+
<tr>
|
| 92 |
<td colspan="2">
|
| 93 |
<div id="ga_dash_mapdata"></div>
|
| 94 |
</td>
|
| 95 |
+
</tr>
|
| 96 |
|
| 97 |
</table>
|
| 98 |
|
| 102 |
<?php
|
| 103 |
echo $this->topReffer;
|
| 104 |
echo $this->PageViews;
|
|
|
|
| 105 |
echo $this->TopPages;
|
| 106 |
+
//echo $this->CountryVisits;
|
| 107 |
+
echo $this->PageKeywordSearch;
|
| 108 |
+
echo $this->PageBrowserViews;
|
| 109 |
?>
|
| 110 |
</script>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>cinasstore_googleanalytics</name>
|
| 4 |
-
<version>0.1.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -14,9 +14,9 @@ Fully Customizable and Non-Encrypted Code. Free Support Supporting Magento Versi
|
|
| 14 |

|
| 15 |
Note- Before Installing the extension, please take the backup of the website</notes>
|
| 16 |
<authors><author><name>Cinas Technologies</name><user>Cinas</user><email>sales@cinastechnologies.com</email></author></authors>
|
| 17 |
-
<date>
|
| 18 |
-
<time>
|
| 19 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Cinasstore_GoogleAnalytics.xml" hash="36f2a205669e60a81a745ea279707c45"/></dir></target><target name="magelocal"><dir name="Cinasstore"><dir name="Googleanalytics"><dir name="Block"><dir name="Adminhtml"><file name="Dashboard.php" hash="
|
| 20 |
<compatible/>
|
| 21 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 22 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>cinasstore_googleanalytics</name>
|
| 4 |
+
<version>0.1.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GPL</license>
|
| 7 |
<channel>community</channel>
|
| 14 |

|
| 15 |
Note- Before Installing the extension, please take the backup of the website</notes>
|
| 16 |
<authors><author><name>Cinas Technologies</name><user>Cinas</user><email>sales@cinastechnologies.com</email></author></authors>
|
| 17 |
+
<date>2014-01-03</date>
|
| 18 |
+
<time>20:42:09</time>
|
| 19 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Cinasstore_GoogleAnalytics.xml" hash="36f2a205669e60a81a745ea279707c45"/></dir></target><target name="magelocal"><dir name="Cinasstore"><dir name="Googleanalytics"><dir name="Block"><dir name="Adminhtml"><file name="Dashboard.php" hash="6b9049c35b3cda8cfe0ade1d31544650"/><dir name="Googleanalytics"><dir name="Edit"><file name="Form.php" hash="4fc3ee2c057426570d0ba5cd202d117e"/><dir name="Tab"><file name="Form.php" hash="1edd301e42af180be589cb0952abca29"/></dir><file name="Tabs.php" hash="4a02b3eae128c653ea3c90b4908525f9"/></dir><file name="Edit.php" hash="20596c13dbc4c849604656a08d65b56c"/><file name="Grid.php" hash="256c71e00a2c7f4c4f15452e78b4f441"/></dir><file name="Googleanalytics.php" hash="a450b2c377b9d3b0c012d4ac3a68c8c0"/></dir><file name="Googleanalytics.php" hash="0c550f4f87833acc048fe6e62bf1e6da"/></dir><dir name="Helper"><file name="Dashboard.php" hash="945a525471a730f6be94a9a2c73315c3"/><file name="Data.php" hash="981a95aa6d0c3bc98d84f4249e6f9821"/></dir><dir name="Model"><file name="Gapi.php" hash="4503d4eaba7704ca425292fb0b650b1e"/><file name="Googleanalytics.php" hash="fbafb51feba61a4f75d425b9c82a27ff"/><dir name="Mysql4"><dir name="Googleanalytics"><file name="Collection.php" hash="7f4fa8e1631036fea33d195b7b5ec57d"/></dir><file name="Googleanalytics.php" hash="60c1a38819063aea14cf31db066e4c4b"/></dir><file name="Observer.php" hash="528d6351049b2aa4a73f898bf638c28b"/><file name="Status.php" hash="7c39b641f5a091ad67a30c784db7d3e2"/><dir name="System"><dir name="Config"><file name="Language.php" hash="a57563bf23ef1d12591f9001e15fc723"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="DashboardController.php" hash="df6a79802706a4f4e6aea18809e41585"/><file name="GoogleanalyticsController.php" hash="5641fa0e0cd5475b1aebf448bf0f60e8"/></dir><file name="IndexController.php" hash="f7535853602c2e1f5e319b08f7434993"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a187720a4e0940cf4f5127f45058459c"/><file name="config.xml" hash="11e3322f8a1019ad070f5303761ff75d"/><file name="system.xml" hash="cc4af2cf3634cb44503df7a0ce184d86"/></dir><dir name="sql"><dir name="Googleanalytics_setup"><file name="mysql4-install-0.1.0.php" hash="3cdbd040bd4a2b88e52654a42692fa6f"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="8c8ea981a81cf84c52b864438a10db1a"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="googleanalytics.xml" hash="25fd348f746f3bf6eb640c9740f86463"/></dir><dir name="template"><dir name="googleanalytics"><file name="report.phtml" hash="bcc5c79a5f8ced4376b9becf51f13744"/></dir></dir></dir></dir></dir></target></contents>
|
| 20 |
<compatible/>
|
| 21 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 22 |
</package>
|
