-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction_maps.php
More file actions
46 lines (43 loc) · 1.59 KB
/
action_maps.php
File metadata and controls
46 lines (43 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
##################################################
#
# Copyright (c) 2004-2023 OIC Group, Inc.
#
# This file is part of Exponent
#
# Exponent is free software; you can redistribute
# it and/or modify it under the terms of the GNU
# General Public License as published by the Free
# Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# GPL: http://www.gnu.org/licenses/gpl.txt
#
##################################################
if (!defined('EXPONENT')) exit('');
// the module may be a wildcard (meaning all modules) by using an asterisk '*'
// the action may be a wildcard (meaning all methods) by using an asterisk '*'
return array(
'cart'=>array( // the 'cart' module
'*'=>'Full Body' // ANY method will use the 'Full Size' subtheme
),
'order'=>array( // the 'order' module
'*'=>'Full Body' // ANY method will use the 'Full Size' subtheme
),
'report'=>array( // the 'report' module
'*'=>'Full Body' // ANY method will use the 'Full Size' subtheme
),
'store'=>array( // the 'store' module
'manage'=>'Full Body' // 'manage' method will use the 'Full Size' subtheme
),
// '*'=>array( // ANY module
// 'showall_by_tags'=>'Tags View' // showall_by_tags method will use the 'Tags View' subtheme
// ),
// 'news'=>array(
// 'show'=>'Large Banner'
// ),
// 'search'=>array(
// 'search'=>'_Search Results'
// ),
);
?>