Version Notes
No notes
Download this release
Release Info
Developer | Yireo |
Extension | Yireo_SystemInfo |
Version | 1.0.8 |
Comparing to | |
See all releases |
Code changes from version 1.0.7 to 1.0.8
- app/code/community/Yireo/SystemInfo/Block/Events.php +61 -0
- app/code/community/Yireo/SystemInfo/Block/Menu.php +10 -3
- app/code/community/Yireo/SystemInfo/Block/Overrides.php +58 -0
- app/code/community/Yireo/SystemInfo/Block/Overview.php +2 -3
- app/code/community/Yireo/SystemInfo/Block/Phpinfo.php +2 -3
- app/code/community/Yireo/SystemInfo/Helper/Data.php +3 -3
- app/code/community/Yireo/SystemInfo/controllers/IndexController.php +23 -4
- app/code/community/Yireo/SystemInfo/etc/config.xml +3 -3
- app/design/adminhtml/default/default/template/systeminfo/events.phtml +63 -0
- app/design/adminhtml/default/default/template/systeminfo/menu.phtml +2 -3
- app/design/adminhtml/default/default/template/systeminfo/overrides.phtml +67 -0
- app/design/adminhtml/default/default/template/systeminfo/overview.phtml +5 -3
- app/design/adminhtml/default/default/template/systeminfo/phpinfo.phtml +2 -3
- app/etc/modules/Yireo_SystemInfo.xml +1 -1
- package.xml +1 -17
app/code/community/Yireo/SystemInfo/Block/Events.php
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* SystemInfo extension for Magento
|
4 |
+
*
|
5 |
+
* @package Yireo_SystemInfo
|
6 |
+
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
+
*/
|
10 |
+
|
11 |
+
class Yireo_SystemInfo_Block_Events extends Mage_Adminhtml_Block_Widget_Container
|
12 |
+
{
|
13 |
+
/*
|
14 |
+
* Constructor method
|
15 |
+
*/
|
16 |
+
public function _construct()
|
17 |
+
{
|
18 |
+
$this->setTemplate('systeminfo/events.phtml');
|
19 |
+
parent::_construct();
|
20 |
+
}
|
21 |
+
|
22 |
+
/*
|
23 |
+
* Helper to return the header of this page
|
24 |
+
*/
|
25 |
+
public function getHeader($title = null)
|
26 |
+
{
|
27 |
+
return 'System Information - '.$this->__($title);
|
28 |
+
}
|
29 |
+
|
30 |
+
/*
|
31 |
+
* Helper to return the menu
|
32 |
+
*/
|
33 |
+
public function getMenu()
|
34 |
+
{
|
35 |
+
return $this->getLayout()->createBlock('systeminfo/menu')->toHtml();
|
36 |
+
}
|
37 |
+
|
38 |
+
/*
|
39 |
+
* Return a list of observable events
|
40 |
+
*/
|
41 |
+
protected function getEvents()
|
42 |
+
{
|
43 |
+
$results = array();
|
44 |
+
$events = Mage::app()->getConfig()->getNode("global/events");
|
45 |
+
foreach($events[0] as $eventName => $event) {
|
46 |
+
foreach($event->observers[0] as $observer) {
|
47 |
+
$class = (string)$observer->class[0];
|
48 |
+
$class = Mage::app()->getConfig()->getModelClassName($class);
|
49 |
+
if(preg_match('/^Mage_/', $class) == false) {
|
50 |
+
$results[$eventName.$class] = array(
|
51 |
+
'event' => $eventName,
|
52 |
+
'class' => $class,
|
53 |
+
);
|
54 |
+
}
|
55 |
+
}
|
56 |
+
}
|
57 |
+
|
58 |
+
ksort($results);
|
59 |
+
return $results;
|
60 |
+
}
|
61 |
+
}
|
app/code/community/Yireo/SystemInfo/Block/Menu.php
CHANGED
@@ -2,11 +2,10 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
|
12 |
class Yireo_SystemInfo_Block_Menu extends Mage_Core_Block_Template
|
@@ -35,6 +34,14 @@ class Yireo_SystemInfo_Block_Menu extends Mage_Core_Block_Template
|
|
35 |
'action' => 'phpinfo',
|
36 |
'title' => 'PHP Info',
|
37 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
);
|
39 |
|
40 |
$url = Mage::getModel('adminhtml/url');
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
class Yireo_SystemInfo_Block_Menu extends Mage_Core_Block_Template
|
34 |
'action' => 'phpinfo',
|
35 |
'title' => 'PHP Info',
|
36 |
),
|
37 |
+
array(
|
38 |
+
'action' => 'overrides',
|
39 |
+
'title' => 'XML-overrides',
|
40 |
+
),
|
41 |
+
array(
|
42 |
+
'action' => 'events',
|
43 |
+
'title' => 'Events',
|
44 |
+
),
|
45 |
);
|
46 |
|
47 |
$url = Mage::getModel('adminhtml/url');
|
app/code/community/Yireo/SystemInfo/Block/Overrides.php
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* SystemInfo extension for Magento
|
4 |
+
*
|
5 |
+
* @package Yireo_SystemInfo
|
6 |
+
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
+
*/
|
10 |
+
|
11 |
+
class Yireo_SystemInfo_Block_Overrides extends Mage_Adminhtml_Block_Widget_Container
|
12 |
+
{
|
13 |
+
/*
|
14 |
+
* Constructor method
|
15 |
+
*/
|
16 |
+
public function _construct()
|
17 |
+
{
|
18 |
+
$this->setTemplate('systeminfo/overrides.phtml');
|
19 |
+
parent::_construct();
|
20 |
+
}
|
21 |
+
|
22 |
+
/*
|
23 |
+
* Helper to return the header of this page
|
24 |
+
*/
|
25 |
+
public function getHeader($title = null)
|
26 |
+
{
|
27 |
+
return 'System Information - '.$this->__($title);
|
28 |
+
}
|
29 |
+
|
30 |
+
/*
|
31 |
+
* Helper to return the menu
|
32 |
+
*/
|
33 |
+
public function getMenu()
|
34 |
+
{
|
35 |
+
return $this->getLayout()->createBlock('systeminfo/menu')->toHtml();
|
36 |
+
}
|
37 |
+
|
38 |
+
/*
|
39 |
+
* Return a list of all the existing overrides
|
40 |
+
*/
|
41 |
+
protected function getOverrides($type = null)
|
42 |
+
{
|
43 |
+
$overrides = array();
|
44 |
+
$modules = Mage::app()->getConfig()->getNode("global/$type");
|
45 |
+
foreach($modules[0] as $name => $config) {
|
46 |
+
if(!$config->rewrite) { continue; }
|
47 |
+
foreach($config->rewrite[0] as $rewrite => $node) {
|
48 |
+
$overrides[$name.'/'.$rewrite.$node] = array(
|
49 |
+
'reference' => $name.'/'.$rewrite,
|
50 |
+
'node' => $node,
|
51 |
+
);
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
ksort($overrides);
|
56 |
+
return $overrides;
|
57 |
+
}
|
58 |
+
}
|
app/code/community/Yireo/SystemInfo/Block/Overview.php
CHANGED
@@ -2,11 +2,10 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
|
12 |
class Yireo_SystemInfo_Block_Overview extends Mage_Adminhtml_Block_Widget_Container
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
class Yireo_SystemInfo_Block_Overview extends Mage_Adminhtml_Block_Widget_Container
|
app/code/community/Yireo/SystemInfo/Block/Phpinfo.php
CHANGED
@@ -2,11 +2,10 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
|
12 |
class Yireo_SystemInfo_Block_Phpinfo extends Mage_Adminhtml_Block_Widget_Container
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
class Yireo_SystemInfo_Block_Phpinfo extends Mage_Adminhtml_Block_Widget_Container
|
app/code/community/Yireo/SystemInfo/Helper/Data.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
/**
|
3 |
* Yireo SystemInfo for Magento
|
4 |
*
|
5 |
-
* @package
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
-
* @copyright Copyright (c)
|
8 |
-
* @license Open
|
9 |
*/
|
10 |
|
11 |
/**
|
2 |
/**
|
3 |
* Yireo SystemInfo for Magento
|
4 |
*
|
5 |
+
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
/**
|
app/code/community/Yireo/SystemInfo/controllers/IndexController.php
CHANGED
@@ -2,18 +2,17 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
|
12 |
/**
|
13 |
* SystemInfo admin controller
|
14 |
*
|
15 |
* @category SystemInfo
|
16 |
-
* @package
|
17 |
*/
|
18 |
class Yireo_SystemInfo_IndexController extends Mage_Adminhtml_Controller_Action
|
19 |
{
|
@@ -50,4 +49,24 @@ class Yireo_SystemInfo_IndexController extends Mage_Adminhtml_Controller_Action
|
|
50 |
->_addContent($this->getLayout()->createBlock('systeminfo/phpinfo'))
|
51 |
->renderLayout();
|
52 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
/**
|
12 |
* SystemInfo admin controller
|
13 |
*
|
14 |
* @category SystemInfo
|
15 |
+
* @package Yireo_SystemInfo
|
16 |
*/
|
17 |
class Yireo_SystemInfo_IndexController extends Mage_Adminhtml_Controller_Action
|
18 |
{
|
49 |
->_addContent($this->getLayout()->createBlock('systeminfo/phpinfo'))
|
50 |
->renderLayout();
|
51 |
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Overrides page
|
55 |
+
*/
|
56 |
+
public function overridesAction()
|
57 |
+
{
|
58 |
+
$this->_initAction()
|
59 |
+
->_addContent($this->getLayout()->createBlock('systeminfo/overrides'))
|
60 |
+
->renderLayout();
|
61 |
+
}
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Overrides page
|
65 |
+
*/
|
66 |
+
public function eventsAction()
|
67 |
+
{
|
68 |
+
$this->_initAction()
|
69 |
+
->_addContent($this->getLayout()->createBlock('systeminfo/events'))
|
70 |
+
->renderLayout();
|
71 |
+
}
|
72 |
}
|
app/code/community/Yireo/SystemInfo/etc/config.xml
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
/**
|
4 |
* Yireo SystemInfo for Magento
|
5 |
*
|
6 |
-
* @package
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license Open Software License
|
10 |
*/
|
11 |
-->
|
@@ -13,7 +13,7 @@
|
|
13 |
|
14 |
<modules>
|
15 |
<Yireo_SystemInfo>
|
16 |
-
<version>1.0.
|
17 |
</Yireo_SystemInfo>
|
18 |
</modules>
|
19 |
|
3 |
/**
|
4 |
* Yireo SystemInfo for Magento
|
5 |
*
|
6 |
+
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
9 |
* @license Open Software License
|
10 |
*/
|
11 |
-->
|
13 |
|
14 |
<modules>
|
15 |
<Yireo_SystemInfo>
|
16 |
+
<version>1.0.8</version>
|
17 |
</Yireo_SystemInfo>
|
18 |
</modules>
|
19 |
|
app/design/adminhtml/default/default/template/systeminfo/events.phtml
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* SystemInfo extension for Magento
|
4 |
+
*
|
5 |
+
* @package Yireo_SystemInfo
|
6 |
+
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
+
*/
|
10 |
+
?>
|
11 |
+
|
12 |
+
<div class="columns ">
|
13 |
+
|
14 |
+
<div class="side-col" id="page:left">
|
15 |
+
<?php echo $this->getMenu(); ?>
|
16 |
+
</div>
|
17 |
+
|
18 |
+
<div class="main-col" id="content">
|
19 |
+
<div class="main-col-inner">
|
20 |
+
|
21 |
+
<div class="content-header">
|
22 |
+
<table cellspacing="0">
|
23 |
+
<tr>
|
24 |
+
<td><h3 class="icon-head head-tag"><?php echo $this->getHeader('Non-Core Events'); ?></h3></td>
|
25 |
+
</tr>
|
26 |
+
</table>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<?php $events = $this->getEvents(); ?>
|
30 |
+
<div class="entry-edit">
|
31 |
+
<div class="entry-edit-head">
|
32 |
+
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__('Events'); ?></h4>
|
33 |
+
</div>
|
34 |
+
<div class="grid">
|
35 |
+
<?php if(!empty($events)) : ?>
|
36 |
+
<table class="data">
|
37 |
+
<thead>
|
38 |
+
<tr class="headings">
|
39 |
+
<th style="width:50%"><?php echo $this->__('Event'); ?></th>
|
40 |
+
<th style="width:50%"><?php echo $this->__('Class'); ?></th>
|
41 |
+
</tr>
|
42 |
+
</thead>
|
43 |
+
<tbody>
|
44 |
+
<?php $i = 0; ?>
|
45 |
+
<?php foreach($events as $event) : ?>
|
46 |
+
<?php $class = ($i % 2 == 1) ? 'odd' : 'even'; ?>
|
47 |
+
<tr class="<?php echo $class; ?>">
|
48 |
+
<td><?php echo $event['event']; ?></td>
|
49 |
+
<td><?php echo $event['class']; ?></td>
|
50 |
+
</tr>
|
51 |
+
<?php $i++; ?>
|
52 |
+
<?php endforeach; ?>
|
53 |
+
</tbody>
|
54 |
+
</table>
|
55 |
+
<?php else: ?>
|
56 |
+
<p><?php echo $this->__('No events found'); ?></p>
|
57 |
+
<?php endif; ?>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
|
61 |
+
</div>
|
62 |
+
</div>
|
63 |
+
</div>
|
app/design/adminhtml/default/default/template/systeminfo/menu.phtml
CHANGED
@@ -2,11 +2,10 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
?>
|
12 |
<ul id="system_config_tabs" class="tabs config-tabs">
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
?>
|
11 |
<ul id="system_config_tabs" class="tabs config-tabs">
|
app/design/adminhtml/default/default/template/systeminfo/overrides.phtml
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* SystemInfo extension for Magento
|
4 |
+
*
|
5 |
+
* @package Yireo_SystemInfo
|
6 |
+
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
+
*/
|
10 |
+
?>
|
11 |
+
|
12 |
+
<div class="columns ">
|
13 |
+
|
14 |
+
<div class="side-col" id="page:left">
|
15 |
+
<?php echo $this->getMenu(); ?>
|
16 |
+
</div>
|
17 |
+
|
18 |
+
<div class="main-col" id="content">
|
19 |
+
<div class="main-col-inner">
|
20 |
+
|
21 |
+
<div class="content-header">
|
22 |
+
<table cellspacing="0">
|
23 |
+
<tr>
|
24 |
+
<td><h3 class="icon-head head-tag"><?php echo $this->getHeader('Overrides'); ?></h3></td>
|
25 |
+
</tr>
|
26 |
+
</table>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<?php $types = array('blocks', 'models', 'helpers'); ?>
|
30 |
+
<?php foreach($types as $type) : ?>
|
31 |
+
<?php $overrides = $this->getOverrides($type); ?>
|
32 |
+
<div class="entry-edit">
|
33 |
+
<div class="entry-edit-head">
|
34 |
+
<h4 class="icon-head head-edit-form fieldset-legend"><?php echo $this->__(ucfirst($type).' Overrides'); ?></h4>
|
35 |
+
</div>
|
36 |
+
<div class="grid">
|
37 |
+
<?php if(!empty($overrides)) : ?>
|
38 |
+
<table class="data">
|
39 |
+
<thead>
|
40 |
+
<tr class="headings">
|
41 |
+
<th style="width:40%"><?php echo $this->__('Reference'); ?></th>
|
42 |
+
<th style="width:60%"><?php echo $this->__('Class'); ?></th>
|
43 |
+
</tr>
|
44 |
+
</thead>
|
45 |
+
<tbody>
|
46 |
+
<?php $i = 0; ?>
|
47 |
+
<?php foreach($overrides as $override) : ?>
|
48 |
+
<?php $class = ($i % 2 == 1) ? 'odd' : 'even'; ?>
|
49 |
+
<tr class="<?php echo $class; ?>">
|
50 |
+
<td><?php echo $override['reference']; ?></td>
|
51 |
+
<td><?php echo (string)$override['node'][0]; ?></td>
|
52 |
+
</tr>
|
53 |
+
<?php $i++; ?>
|
54 |
+
<?php endforeach; ?>
|
55 |
+
</tbody>
|
56 |
+
</table>
|
57 |
+
<?php else: ?>
|
58 |
+
<p><?php echo $this->__('No overrides found'); ?></p>
|
59 |
+
<?php endif; ?>
|
60 |
+
</div>
|
61 |
+
</div>
|
62 |
+
<p> </p>
|
63 |
+
<?php endforeach; ?>
|
64 |
+
|
65 |
+
</div>
|
66 |
+
</div>
|
67 |
+
</div>
|
app/design/adminhtml/default/default/template/systeminfo/overview.phtml
CHANGED
@@ -2,11 +2,10 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
?>
|
12 |
|
@@ -67,3 +66,6 @@
|
|
67 |
</div>
|
68 |
</div>
|
69 |
|
|
|
|
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
?>
|
11 |
|
66 |
</div>
|
67 |
</div>
|
68 |
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
</div>
|
app/design/adminhtml/default/default/template/systeminfo/phpinfo.phtml
CHANGED
@@ -2,11 +2,10 @@
|
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
?>
|
12 |
|
2 |
/**
|
3 |
* SystemInfo extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_SystemInfo
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
?>
|
11 |
|
app/etc/modules/Yireo_SystemInfo.xml
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
*
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
* @license Open Software License
|
10 |
*/
|
11 |
-->
|
5 |
*
|
6 |
* @package Yireo_SystemInfo
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
9 |
* @license Open Software License
|
10 |
*/
|
11 |
-->
|
package.xml
CHANGED
@@ -1,18 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package>
|
3 |
-
<name>Yireo_SystemInfo</name>
|
4 |
-
<version>1.0.7</version>
|
5 |
-
<stability>stable</stability>
|
6 |
-
<license uri="http://www.opensource.org/licenses/osl-3.0.php/">Open Software License</license>
|
7 |
-
<channel>community</channel>
|
8 |
-
<extends/>
|
9 |
-
<summary>This module displays Magento-related System Information</summary>
|
10 |
-
<description>This module displays Magento-related System Information</description>
|
11 |
-
<notes>This module displays Magento-related System Information</notes>
|
12 |
-
<authors><author><name>Yireo</name><user>auto-converted</user><email>info@jira.nl</email></author></authors>
|
13 |
-
<date>2010-02-10</date>
|
14 |
-
<time>10:38:57</time>
|
15 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="systeminfo"><file name="menu.phtml" hash="135bffae0277a084c259a7f4668e4fd1"/><file name="overview.phtml" hash="dfc0163dc1facec810cc8d4aaabbaca2"/><file name="phpinfo.phtml" hash="f0ea07f9a4c812266ca380acfa26777b"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Yireo"><dir name="SystemInfo"><dir name="controllers"><file name="IndexController.php" hash="b12d9bf59d4a22b5ef8f8556bce11a71"/></dir><dir name="Block"><file name="Menu.php" hash="09e9e7062fe60338ddd35fe15ebdb241"/><file name="Overview.php" hash="c3818f0cd36e373a847cf6275a48d193"/><file name="Phpinfo.php" hash="734cfec644472feae437b94a232e6588"/></dir><dir name="etc"><file name="config.xml" hash="9f45e265abb074692977757327fecda7"/></dir><dir name="Helper"><file name="Data.php" hash="f93409130daf2f8230919af9fb54fd5c"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Yireo_SystemInfo.xml" hash="278d1a6922708a098215a34733cb8bc6"/></dir></target></contents>
|
16 |
-
<compatible/>
|
17 |
-
<dependencies/>
|
18 |
-
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<package><name>Yireo_SystemInfo</name><version>1.0.8</version><stability>stable</stability><license>Open Source License</license><channel>community</channel><extends></extends><summary>No summary</summary><description>No description</description><notes>No notes</notes><authors><author><name>Yireo</name><user>yireo</user><email>info@yireo.com</email></author></authors><date>2013-12-01</date><time>1:12:28</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Yireo_SystemInfo.xml" hash="f3670b3ca95179137d5e5e7ef3b12f3a"/></dir></dir><dir name="code"><dir name="community"><dir name="Yireo"><dir name="SystemInfo"><dir name="controllers"><file name="IndexController.php" hash="3b9814ccf499ac006abae1def4b989c4"/></dir><dir name="Block"><file name="Events.php" hash="2853528c3322e5438c6d0d129338b90c"/><file name="Menu.php" hash="be277b55bfeb6689d05d62e433a46619"/><file name="Overrides.php" hash="34f432207292da3576e4af9d3303e086"/><file name="Overview.php" hash="4190b0d6ac9bae0d39051c1384a4e2d4"/><file name="Phpinfo.php" hash="0727548bea1befee2bd3af094181775b"/></dir><dir name="etc"><file name="config.xml" hash="127b30451e6afcfe9a58758c460eb18d"/></dir><dir name="Helper"><file name="Data.php" hash="f23bb2bc536120787d3442fa97fef516"/></dir></dir></dir></dir></dir><dir name="design"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="systeminfo"><file name="events.phtml" hash="3435e2527b7eb2ead094a594413c495f"/><file name="menu.phtml" hash="5f4621b8e6d6b1f19c3d1f38c8b05381"/><file name="overrides.phtml" hash="ddb2a6267770d30569e8ed48493bd5ff"/><file name="overview.phtml" hash="96580328adde89eb74585b4c6cfb275f"/><file name="phpinfo.phtml" hash="d3191daad4ed019d12102d31a13fdc15"/></dir></dir></dir></dir></dir></dir></dir></target></contents></package>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|