Skip to content

Commit 9608e10

Browse files
authored
Added module names to helper(#2617)
1 parent fb12d0f commit 9608e10

File tree

124 files changed

+234
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+234
-3
lines changed

app/code/core/Mage/Admin/Helper/Data.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
class Mage_Admin_Helper_Data extends Mage_Core_Helper_Abstract
2929
{
30+
protected $_moduleName = 'Mage_Admin';
31+
3032
/**
3133
* Configuration path to expiration period of reset password link
3234
*/

app/code/core/Mage/AdminNotification/Helper/Data.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
class Mage_AdminNotification_Helper_Data extends Mage_Core_Helper_Abstract
2929
{
30+
protected $_moduleName = 'Mage_AdminNotification';
31+
3032
/**
3133
* Last Notice object
3234
*

app/code/core/Mage/Adminhtml/Helper/Addresses.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ class Mage_Adminhtml_Helper_Addresses extends Mage_Core_Helper_Abstract
2929
{
3030
const DEFAULT_STREET_LINES_COUNT = 2;
3131

32+
protected $_moduleName = 'Mage_Adminhtml';
33+
3234
/**
3335
* Check if number of street lines is non-zero
3436
*

app/code/core/Mage/Adminhtml/Helper/Catalog.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ class Mage_Adminhtml_Helper_Catalog extends Mage_Core_Helper_Abstract
2929
{
3030
const XML_PATH_SITEMAP_VALID_PATHS = 'general/file/sitemap_generate_valid_paths';
3131

32+
protected $_moduleName = 'Mage_Adminhtml';
33+
3234
/**
3335
* Attribute Tab block name for product edit
3436
*

app/code/core/Mage/Adminhtml/Helper/Catalog/Product/Composite.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
class Mage_Adminhtml_Helper_Catalog_Product_Composite extends Mage_Core_Helper_Abstract
2929
{
30+
protected $_moduleName = 'Mage_Adminhtml';
31+
3032
/**
3133
* Init layout of product configuration update result
3234
*

app/code/core/Mage/Adminhtml/Helper/Dashboard/Data.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
class Mage_Adminhtml_Helper_Dashboard_Data extends Mage_Core_Helper_Data
2929
{
30+
protected $_moduleName = 'Mage_Adminhtml';
31+
3032
protected $_locale = null;
3133
protected $_stores = null;
3234

app/code/core/Mage/Adminhtml/Helper/Dashboard/Order.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
class Mage_Adminhtml_Helper_Dashboard_Order extends Mage_Adminhtml_Helper_Dashboard_Abstract
2929
{
30+
protected $_moduleName = 'Mage_Adminhtml';
31+
3032
protected function _initCollection()
3133
{
3234
$isFilter = $this->getParam('store') || $this->getParam('website') || $this->getParam('group');

app/code/core/Mage/Adminhtml/Helper/Data.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ class Mage_Adminhtml_Helper_Data extends Mage_Adminhtml_Helper_Help_Mapping
3333
const XML_PATH_CUSTOM_ADMIN_PATH = 'default/admin/url/custom_path';
3434
const XML_PATH_ADMINHTML_SECURITY_USE_FORM_KEY = 'admin/security/use_form_key';
3535

36+
protected $_moduleName = 'Mage_Adminhtml';
37+
3638
protected $_pageHelpUrl;
3739

3840
/**

app/code/core/Mage/Adminhtml/Helper/Help/Mapping.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
abstract class Mage_Adminhtml_Helper_Help_Mapping extends Mage_Core_Helper_Abstract
2929
{
30+
protected $_moduleName = 'Mage_Adminhtml';
31+
3032
/**
3133
* Mapping of help page urls depending on module and page route
3234
*

app/code/core/Mage/Adminhtml/Helper/Js.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
class Mage_Adminhtml_Helper_Js extends Mage_Core_Helper_Js
2929
{
30+
protected $_moduleName = 'Mage_Adminhtml';
31+
3032
/**
3133
* Decode serialized grid data
3234
*

0 commit comments

Comments
 (0)