Lines Matching defs:atts
924 * The parameters $params, $flashvars and $atts need to be associative arrays.
937 * @param array $atts - additional attributes for the <object> tag
941 function html_flashobject($swf, $width, $height, $params = null, $flashvars = null, $atts = null, $alt = '')
948 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;