Searched refs:atts (Results 1 – 3 of 3) sorted by relevance
937 * @param array $atts - additional attributes for the <object> tag941 function html_flashobject($swf, $width, $height, $params = null, $flashvars = null, $atts = null, $… argument948 if (is_null($atts)) $atts = [];949 $atts['width'] = (int) $width;950 $atts['height'] = (int) $height;951 if (!$atts['width']) $atts['width'] = 425;952 if (!$atts['height']) $atts['height'] = 350;955 $std = $atts;960 $ie = $atts;
1902 * @param array $atts - additional attributes for the <video> tag1908 public function _video($src, $width, $height, $atts = null) argument1911 if (is_null($atts)) $atts = [];1912 $atts['width'] = (int)$width;1913 $atts['height'] = (int)$height;1914 if (!$atts['width']) $atts['width'] = 320;1915 if (!$atts['height']) $atts['height'] = 240;1939 $out .= '<video ' . buildAttributes($atts) . ' controls="controls"';1953 $title = empty($atts['title'])1955 : $atts['title'];[all …]
783 $atts = [790 if (!is_null($setperm) && $setperm == $perm) $atts['checked'] = 'checked';792 $atts['disabled'] = 'disabled';800 $ret .= '<input ' . buildAttributes($atts) . ' /> ';