1 | <?php |
||
8 | class BusinessPresenter extends BasePresenter |
||
9 | { |
||
10 | 5 | public function __construct(Business $resource) |
|
14 | |||
15 | /** |
||
16 | * get Facebook Profile Public Picture. |
||
17 | * |
||
18 | * @param string $type Type of picture to print |
||
19 | * |
||
20 | * @return string HTML code to render img with facebook picture |
||
21 | */ |
||
22 | 2 | public function facebookImg($type = 'square') |
|
40 | |||
41 | /** |
||
42 | * get Google Static Map img. |
||
43 | * |
||
44 | * @param int $zoom Zoom Level |
||
45 | * |
||
46 | * @return string HTML code to render img with map |
||
47 | */ |
||
48 | 1 | public function staticMap($zoom = 15) |
|
63 | |||
64 | /** |
||
65 | * get Industry Icon. |
||
66 | * |
||
67 | * @return string HTML code to render img with icon |
||
68 | */ |
||
69 | 1 | public function industryIcon() |
|
79 | } |
||
80 |