This repository has been archived by the owner on Sep 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from mwgamble/store_code_managestores_grid
Add custom column for store code to Manage Stores grid
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
app/code/community/BL/CustomGrid/Model/Grid/Type/System/Store.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
class BL_CustomGrid_Model_Grid_Type_System_Store extends BL_CustomGrid_Model_Grid_Type_Abstract | ||
{ | ||
/** | ||
* @return string[]|string | ||
*/ | ||
protected function _getSupportedBlockTypes() | ||
{ | ||
return array('adminhtml/system_store_grid'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters