Lines Matching defs:size
21 'size (optional)' => 'integer'),
30 function getXHTML($user, $title = '', $align = '', $size = NULL) {
33 $src = $this->_getAvatarURL($user, $title, $size);
37 ' title="'.$title.'" alt="'.$title.'" width="'.$size.'"'.
38 ' height="'.$size.'" />';
44 function _getAvatarURL($user, &$title, &$size) {
47 if (!$size || !is_int($size)) $size = $this->getConf('size');
67 $src = ml($ns.':'.$user.$format, array('w' => $size, 'h' => $size));
70 $src = ml($ns.':'.$name.$format, array('w' => $size, 'h' => $size));
81 $file = 'monsterid.php?seed='.$seed.'&size='.$size.'&.png';
85 switch ($size) {
87 $file = 'images/default_'.$size.'.png';
102 $src .= 'avatar/'.$seed.'?s='.$size.'&d='.$this->getConf('default').'&r='.$this->getConf('rating').'&.jpg';