Created
August 6, 2013 10:29
-
-
Save GreatPotato/6163423 to your computer and use it in GitHub Desktop.
Search by custom column in the backend order search
This file contains hidden or 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
| <?php | |
| public function subscribeEvents() | |
| { | |
| Backend::$events->addEvent('backend:onControllerReady', $this, 'on_backend_controller_ready'); | |
| } | |
| public function on_backend_controller_ready($controller) | |
| { | |
| $controller->list_search_fields[] = 'x_custom_column'; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment