Lines Matching defs:height
1179 * @param int $height height of media in pixel
1190 $height = null,
1204 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1264 * @param int $height height of media in pixel
1275 $height = null,
1296 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1665 * @param int $height height of media in pixel
1676 $height = null,
1711 'h' => $height,
1730 if (!is_null($height)) {
1731 $ret .= ' height="' . $this->_xmlEntities($height) . '"';
1752 $ret .= $this->_video($src, $width, $height, $att);
1776 $height,
1858 $img['height'],
1872 * @param int $height height of media in pixel
1878 public function _getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render)
1891 $link['name'] = $this->_media($src, $title, $align, $width, $height, $cache, $render);
1901 * @param int $height - height of the video in pixels
1908 public function _video($src, $width, $height, $atts = null)
1910 // prepare width and height
1913 $atts['height'] = (int)$height;
1915 if (!$atts['height']) $atts['height'] = 240;