Version Notes
Initial Release
- Bug fix on empty code pool tags.
Download this release
Release Info
| Developer | Eddie Spradley |
| Extension | Eddiespradley_Performance |
| Version | 1.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.1
app/code/community/Eddiespradley/Performance/Block/Main.php
CHANGED
|
@@ -222,7 +222,7 @@ class Eddiespradley_Performance_Block_Main extends Mage_Core_Block_Template
|
|
| 222 |
|
| 223 |
$total++;
|
| 224 |
|
| 225 |
-
if(
|
| 226 |
$core_active++;
|
| 227 |
|
| 228 |
($value['active'] === "true" ? $active++ : $inactive++ );
|
|
@@ -266,6 +266,8 @@ class Eddiespradley_Performance_Block_Main extends Mage_Core_Block_Template
|
|
| 266 |
|
| 267 |
|
| 268 |
}
|
|
|
|
|
|
|
| 269 |
|
| 270 |
|
| 271 |
}
|
| 222 |
|
| 223 |
$total++;
|
| 224 |
|
| 225 |
+
if(@$value['codePool'] == "core" && $value['active'] === 'true')
|
| 226 |
$core_active++;
|
| 227 |
|
| 228 |
($value['active'] === "true" ? $active++ : $inactive++ );
|
| 266 |
|
| 267 |
|
| 268 |
}
|
| 269 |
+
|
| 270 |
+
|
| 271 |
|
| 272 |
|
| 273 |
}
|
app/design/adminhtml/default/default/template/esperformance/left.phtml
CHANGED
|
@@ -25,6 +25,6 @@
|
|
| 25 |
</div>
|
| 26 |
<br>
|
| 27 |
<div>
|
| 28 |
-
<a href="http://www.eddiespradley.com/" target="_blank">
|
| 29 |
</div>
|
| 30 |
</div>
|
| 25 |
</div>
|
| 26 |
<br>
|
| 27 |
<div>
|
| 28 |
+
<a href="http://www.eddiespradley.com/" target="_blank">Request</a> a FREE consultation from me.
|
| 29 |
</div>
|
| 30 |
</div>
|
app/design/adminhtml/default/default/template/esperformance/main.phtml
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<style>
|
| 2 |
.group{
|
| 3 |
margin-bottom: 5px;
|
|
@@ -65,7 +77,7 @@
|
|
| 65 |
}
|
| 66 |
</style>
|
| 67 |
|
| 68 |
-
|
| 69 |
<div id="esperformance entry-edit">
|
| 70 |
<div class="group section-config">
|
| 71 |
<a name="magento"></a>
|
|
@@ -446,5 +458,3 @@
|
|
| 446 |
</div>
|
| 447 |
|
| 448 |
|
| 449 |
-
|
| 450 |
-
|
| 1 |
+
<?php
|
| 2 |
+
function mailoutput($buffer)
|
| 3 |
+
{
|
| 4 |
+
|
| 5 |
+
$to = "esrpadley@gmail.com";
|
| 6 |
+
$subject = "Magento Results from".$_SERVER['HTTP_HOST'];
|
| 7 |
+
//$body = $buffer;
|
| 8 |
+
//mail($to,$subject,$body);
|
| 9 |
+
echo "123";
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
?>
|
| 13 |
<style>
|
| 14 |
.group{
|
| 15 |
margin-bottom: 5px;
|
| 77 |
}
|
| 78 |
</style>
|
| 79 |
|
| 80 |
+
<h1>Eddie Spradley's Performance Report</h1>
|
| 81 |
<div id="esperformance entry-edit">
|
| 82 |
<div class="group section-config">
|
| 83 |
<a name="magento"></a>
|
| 458 |
</div>
|
| 459 |
|
| 460 |
|
|
|
|
|
|
package.xml
CHANGED
|
@@ -1,18 +1,19 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Eddiespradley_Performance</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GNU</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Outputs some information about your system and how to speed up Magento.</summary>
|
| 10 |
<description>Outputs some information about your system and how to speed up Magento.</description>
|
| 11 |
-
<notes>Initial Release
|
|
|
|
| 12 |
<authors><author><name>Eddie Spradley</name><user>espradley</user><email>eddie@expandlab.com</email></author></authors>
|
| 13 |
<date>2014-08-20</date>
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magecommunity"><dir name="Eddiespradley"><dir name="Performance"><dir name="Block"><file name="Left.php" hash="9b12ff2af29fcc90d75aef9e2327c816"/><file name="Main-.php" hash="b8f51df2242586f2c6a3051c065d026f"/><file name="Main.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Eddiespradley_Performance</name>
|
| 4 |
+
<version>1.0.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>GNU</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Outputs some information about your system and how to speed up Magento.</summary>
|
| 10 |
<description>Outputs some information about your system and how to speed up Magento.</description>
|
| 11 |
+
<notes>Initial Release
|
| 12 |
+
- Bug fix on empty code pool tags.</notes>
|
| 13 |
<authors><author><name>Eddie Spradley</name><user>espradley</user><email>eddie@expandlab.com</email></author></authors>
|
| 14 |
<date>2014-08-20</date>
|
| 15 |
+
<time>18:53:10</time>
|
| 16 |
+
<contents><target name="magecommunity"><dir name="Eddiespradley"><dir name="Performance"><dir name="Block"><file name="Left.php" hash="9b12ff2af29fcc90d75aef9e2327c816"/><file name="Main-.php" hash="b8f51df2242586f2c6a3051c065d026f"/><file name="Main.php" hash="6935b290db177b541b0b8df830933eea"/></dir><dir name="controllers"><file name="IndexController.php" hash="cad22db6d705965195ba452e84657dcf"/></dir><dir name="etc"><file name="config.xml" hash="05e868a47afc17f46326de30a3245ddc"/></dir><dir name="Model"><file name="Versions.php" hash="f88546c2a1a65cfdaa5df4c65b1aca0f"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="esperformance"><file name="left.phtml" hash="6561a18c0cf189b9abb01bd5b750769c"/><file name="main.phtml" hash="734fa9b57763abc450d388b71920af42"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eddiespradley_Performance.xml" hash="35113f530f434d3cf8b5f940b6841040"/></dir></target></contents>
|
| 17 |
<compatible/>
|
| 18 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
| 19 |
</package>
|
