Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BmlSize.php
Go to the documentation of this file.
1 <?php
8 
9 class BmlSize
10 {
16  public function getBmlSizeHPH()
17  {
18  return [
19  '190x100' => '190 x 100',
20  '234x60' => '234 x 60',
21  '300x50' => '300 x 50',
22  '468x60' => '468 x 60',
23  '728x90' => '728 x 90',
24  '800x66' => '800 x 66'
25  ];
26  }
27 
33  public function getBmlSizeHPS()
34  {
35  return [
36  '120x90' => '120 x 90',
37  '190x100' => '190 x 100',
38  '234x60' => '234 x 60',
39  '120x240' => '120 x 240',
40  '120x600' => '120 x 600',
41  '234x400' => '234 x 400',
42  '250x250' => '250 x 250'
43  ];
44  }
45 
51  public function getBmlSizeCCPC()
52  {
53  return [
54  '190x100' => '190 x 100',
55  '234x60' => '234 x 60',
56  '300x50' => '300 x 50',
57  '468x60' => '468 x 60',
58  '728x90' => '728 x 90',
59  '800x66' => '800 x 66'
60  ];
61  }
62 
68  public function getBmlSizeCCPS()
69  {
70  return [
71  '120x90' => '120 x 90',
72  '190x100' => '190 x 100',
73  '234x60' => '234 x 60',
74  '120x240' => '120 x 240',
75  '120x600' => '120 x 600',
76  '234x400' => '234 x 400',
77  '250x250' => '250 x 250'
78  ];
79  }
80 
86  public function getBmlSizeCPPC()
87  {
88  return [
89  '190x100' => '190 x 100',
90  '234x60' => '234 x 60',
91  '300x50' => '300 x 50',
92  '468x60' => '468 x 60',
93  '728x90' => '728 x 90',
94  '800x66' => '800 x 66'
95  ];
96  }
97 
103  public function getBmlSizeCPPN()
104  {
105  return [
106  '120x90' => '120 x 90',
107  '190x100' => '190 x 100',
108  '234x60' => '234 x 60',
109  '120x240' => '120 x 240',
110  '120x600' => '120 x 600',
111  '234x400' => '234 x 400',
112  '250x250' => '250 x 250'
113  ];
114  }
115 
121  public function getBmlSizeCheckoutC()
122  {
123  return [
124  '234x60' => '234 x 60',
125  '300x50' => '300 x 50',
126  '468x60' => '468 x 60',
127  '728x90' => '728 x 90',
128  '800x66' => '800 x 66'
129  ];
130  }
131 
137  public function getBmlSizeCheckoutN()
138  {
139  return [
140  '234x60' => '234 x 60',
141  '300x50' => '300 x 50',
142  '468x60' => '468 x 60'
143  ];
144  }
145 }