Home
last modified time | relevance | path

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

/dokuwiki/inc/
H A Dhtml.php937 * @param array $atts - additional attributes for the <object> tag
941 function html_flashobject($swf, $width, $height, $params = null, $flashvars = null, $atts = null, $… argument
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;
/dokuwiki/inc/parser/
H A Dxhtml.php1902 * @param array $atts - additional attributes for the <video> tag
1908 public function _video($src, $width, $height, $atts = null) argument
1911 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 …]
/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;';