Lines Matching refs:size
41 'size' => 'int'
59 'width="' . (string) $size . '" ' .
60 'height="' . (string) $size . '" />';
113 $confSize = (int) $this->getConf('size');
165 return ml($imagePath, ['w' => $size, 'h' => $size], true, '&', false);
174 private function saveMonsterIdAvatar(string $username, int $size): bool argument
182 … $monsterUrl = DOKU_URL . 'lib/plugins/avatar/monsterid.php?seed=' . $seed . '&size=' . $size;
197 private function getGravatarUrl(string $mail, int $size): string argument
202 ? $this->getMonsterIdUrl($seed, $size)
203 : $this->getDefaultImageUrl($size);
210 's' => $size,
218 private function getMonsterIdUrl(string $seed, int $size): string argument
220 $file = 'monsterid.php?seed=' . $seed . '&size=' . $size . '&.png';
224 private function getDefaultImageUrl(int $size): string argument
227 $realSize = in_array($size, $validSizes, true) ? $size : self::DEFAULT_SIZES['xlarge'];