blob: 945c7ea25bd134cfbebb723675908780201bad51 (
plain)
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
|
<?php
namespace phorkie;
class HtmlHelper
{
public function getIconUrl($email, $size = 32)
{
if ($email == 'anonymous@phorkie') {
return 'phorkie/anonymous.png';
}
$s = new \Services_Libravatar();
return $s->url(
$email,
array(
'size' => $size,
'default' => Tools::fullUrl('phorkie/anonymous.png')
)
);
}
public function getLanguageOptions(File $file = null)
{
$html = '<option value="_auto_">* automatic *</option>';
$fileExt = null;
if ($file !== null) {
$fileExt = $file->getExt();
}
foreach ($GLOBALS['phorkie']['languages'] as $ext => $arLang) {
if (isset($arLang['show']) && !$arLang['show']) {
continue;
}
$html .= sprintf(
'<option value="%s"%s>%s</option>',
$ext,
$fileExt == $ext ? ' selected="selected"' : '',
$arLang['title']
) . "\n";
}
return $html;
}
}
?>
|