Home
last modified time | relevance | path

Searched refs:atts (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/inc/
H A Dhtml.php940 * @param array $atts - additional attributes for the <object> tag
944 function html_flashobject($swf, $width, $height, $params = null, $flashvars = null, $atts = null, $… argument
951 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;
/dokuwiki/inc/parser/
H A Dxhtml.php1900 * @param array $atts - additional attributes for the <video> tag
1906 public function _video($src, $width, $height, $atts = null) argument
1909 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 …]
/dokuwiki/lib/plugins/acl/
H A Dadmin.php783 $atts = [
790 if (!is_null($setperm) && $setperm == $perm) $atts['checked'] = 'checked';
792 $atts['disabled'] = 'disabled';
800 $ret .= '<input ' . buildAttributes($atts) . ' />&#160;';