Lines Matching refs:height
87 [$width, $height] = $this->parseSize($userparams);
90 $url = $this->insertPlaceholders($this->sites[$site]['url'], $vid, $width, $height);
105 'height' => $height,
135 'height' => $data['height'],
136 'style' => $this->sizeToStyle($data['width'], $data['height']),
157 * @param int|string $height
160 public function sizeToStyle($width, $height)
167 if ($height && $height == (int)$height) {
168 $height .= 'px';
173 if ($height) $style .= 'height:' . $height . ';';
187 height="' . $data['height'] . '">';
210 * @param int|string $height
213 public function insertPlaceholders($url, $vid, $width, $height)
219 $url = str_replace('@HEIGHT@', $height, $url);