Searched refs:atts (Results 1 – 3 of 3) sorted by relevance
940 * @param array $atts - additional attributes for the <object> tag944 function html_flashobject($swf, $width, $height, $params = null, $flashvars = null, $atts = null, $… argument951 if (is_null($atts)) $atts = [];952 $atts['width'] = (int) $width;953 $atts['height'] = (int) $height;954 if (!$atts['width']) $atts['width'] = 425;955 if (!$atts['height']) $atts['height'] = 350;958 $std = $atts;963 $ie = $atts;
1900 * @param array $atts - additional attributes for the <video> tag1906 public function _video($src, $width, $height, $atts = null) argument1909 if (is_null($atts)) $atts = [];1910 $atts['width'] = (int)$width;1911 $atts['height'] = (int)$height;1912 if (!$atts['width']) $atts['width'] = 320;1913 if (!$atts['height']) $atts['height'] = 240;1937 $out .= '<video ' . buildAttributes($atts) . ' controls="controls"';1951 $title = empty($atts['title'])1953 : $atts['title'];[all …]
783 $atts = [790 if (!is_null($setperm) && $setperm == $perm) $atts['checked'] = 'checked';792 $atts['disabled'] = 'disabled';800 $ret .= '<input ' . buildAttributes($atts) . ' /> ';