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 namespace ProcessWire; | |
| class ProcessDashboard extends Process implements Module | |
| { | |
| public static function getModuleInfo() | |
| { | |
| return [ | |
| 'title' => 'Orders Dashboard', | |
| 'summary' => 'Shows latest orders', |
NewerOlder