Home
last modified time | relevance | path

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

/dokuwiki/inc/
H A Dhtml.php924 * 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['heigh
896 html_flashobject($swf, $width, $height, $params = null, $flashvars = null, $atts = null, $alt = '') global() argument
[all...]
/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)
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['heigh
1793 _video($src, $width, $height, $atts = null) global() argument
1878 _audio($src, $atts = array()) global() argument
[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;';