Lines Matching defs:width
1178 * @param int $width width of media in pixel
1189 $width = null,
1204 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1263 * @param int $width width of media in pixel
1274 $width = null,
1296 $link = $this->_getMediaLinkConf($src, $title, $align, $width, $height, $cache, $render);
1664 * @param int $width width of media in pixel
1675 $width = null,
1710 'w' => $width,
1726 if (!is_null($width)) {
1727 $ret .= ' width="' . $this->_xmlEntities($width) . '"';
1752 $ret .= $this->_video($src, $width, $height, $att);
1775 $width,
1857 $img['width'],
1871 * @param int $width width 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);
1900 * @param int $width - width of the video in pixels
1908 public function _video($src, $width, $height, $atts = null)
1910 // prepare width and height
1912 $atts['width'] = (int)$width;
1914 if (!$atts['width']) $atts['width'] = 320;