| 1 | <?php |
||
| 17 | class Main |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Module class instance |
||
| 22 | * @var \gplcart\core\Module $module |
||
| 23 | */ |
||
| 24 | protected $module; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param Module $module |
||
| 28 | */ |
||
| 29 | public function __construct(Module $module) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Implements hook "library.list" |
||
| 36 | * @param array $libraries |
||
| 37 | */ |
||
| 38 | public function hookLibraryList(array &$libraries) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Implements hook "image.style.action.handlers" |
||
| 54 | * @param array $handlers |
||
| 55 | */ |
||
| 56 | public function hookImageStyleActionHandlers(array &$handlers) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Returns an array of image style actions |
||
| 63 | * @return array |
||
| 64 | */ |
||
| 65 | public function getActionHandlers() |
||
| 69 | |||
| 70 | } |
||
| 71 |