1 | <?php |
||
5 | class Info_Window_Model extends \WPLib_Model_Base { |
||
6 | |||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $_content = ''; |
||
11 | |||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | protected $_pixel_offset; |
||
16 | |||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $_position; |
||
21 | |||
22 | /** |
||
23 | * @var int |
||
24 | */ |
||
25 | protected $_max_width; |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | function content() { |
||
35 | |||
36 | /** |
||
37 | * @return int |
||
38 | */ |
||
39 | function pixel_offset() { |
||
44 | |||
45 | /** |
||
46 | * @return array |
||
47 | */ |
||
48 | function position() { |
||
53 | |||
54 | /** |
||
55 | * @return int |
||
56 | */ |
||
57 | function max_width() { |
||
62 | |||
63 | } |
||
64 |