Home
last modified time | relevance | path

Searched refs:attr (Results 276 – 300 of 722) sorted by last modified time

1...<<11121314151617181920>>...29

/plugin/move/script/
H A Dtree.js27 $this.children('div').attr('title', oldid + ' -> ' + newid);
30 $this.children('div').attr('title', '');
149 .find('img.rename').attr('title', LANG.plugins.move.renameitem)
151 .find('img.add').attr('title', LANG.plugins.move.add);
183 ns: $clicky.attr('href'),
/plugin/move/admin/
H A Dtree.php184 $attr = buildAttributes($params);
186 return "<li $attr>";
/plugin/move/
H A DMenuItem.php19 $attr = parent::getLinkAttributes($classprefix);
20 if (empty($attr['class'])) {
21 $attr['class'] = '';
23 $attr['class'] .= ' plugin_move_page ';
24 return $attr;
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Record/
H A DAbstractPlaceRecord.php24 * @param mixed $attr
26 public function __get($attr) argument
28 if ($attr === 'name') {
32 return parent::__get($attr);
38 * @param mixed $attr
40 public function __isset($attr) argument
42 if ($attr === 'name') {
46 return parent::__isset($attr);
H A DAbstractRecord.php22 * @param mixed $attr
24 public function __get($attr) argument
27 $key = $this->attributeToKey($attr);
29 if ($this->__isset($attr)) {
31 } elseif ($this->validAttribute($attr)) {
38 throw new \RuntimeException("Unknown attribute: $attr");
41 public function __isset($attr) argument
43 return $this->validAttribute($attr) &&
47 private function attributeToKey($attr) argument
52 private function validAttribute($attr) argument
[all …]
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Model/
H A DAbstractModel.php42 * @param mixed $attr
44 public function __get($attr) argument
46 if ($attr !== 'instance' && property_exists($this, $attr)) {
47 return $this->$attr;
50 throw new \RuntimeException("Unknown attribute: $attr");
56 * @param mixed $attr
58 public function __isset($attr) argument
60 return $attr !== 'instance' && isset($this->$attr);
H A DCity.php100 * @param mixed $attr
102 public function __get($attr) argument
104 if ($attr === 'mostSpecificSubdivision') {
105 return $this->$attr();
108 return parent::__get($attr);
114 * @param mixed $attr
116 public function __isset($attr) argument
118 if ($attr === 'mostSpecificSubdivision') {
124 return parent::__isset($attr);
/plugin/titlesanchorlink/
H A Dscript.js3 var id = $(this).attr('id');
13 var id = $(this).attr('id');
16 var id = $(this).attr('id');
/plugin/multiorphan/
H A Dscript.js18 …request({'do':'view'+type, 'link':decodeURIComponent($link.attr('elementid'))}, function(response){
21 … $('<div/>').attr('id', 'multiorphan__preview_dialog').appendTo('body').dialog({
45 … $link.parents('.entry[elementid="'+$link.attr('elementid')+'"]').addClass('deleted disabled');
58 $link.parents('.entry[elementid="'+$link.attr('elementid')+'"]').remove();
184 … var $link = $('<a>').attr(attrs).text(action.label).appendTo($buttonSet).click(action.click);
198 $header.attr('count', parseInt($header.attr('count')||0)+1);
202 … var $wrapper = $('<div/>').addClass('entry').attr('elementid', id).appendTo($insertPoint);
279 $orphanForm.find('.multiorphan__result_group .orphan.header').attr('count', null);
292 $pagesOut.prev('.header').attr('count', $currentResults.pages.orphan.length);
293 $mediaOut.prev('.header').attr('count', $currentResults.media.orphan.length);
[all …]
H A Dstyle.less58 content: attr(count);
/plugin/imageflow/
H A Dscript.js130 loadImage.attr('src', DOKU_BASE + 'lib/plugins/imageflow/images/loader_bg.gif');
133 loadImage.attr('src', DOKU_BASE + 'lib/plugins/imageflow/images/loader.gif');
142 $(JSINFO['relation']['imageflow'][this.root.attr('id')]).each(function(){
204 this.image.attr('src', _self.intermediateImageSrc);
264 this.image.attr({
/plugin/strata/
H A Dscript.js153 return parseInt(jQuery(item1).attr('data-strata-order')) - parseInt(jQuery(item2).attr('data-strata-order'));
223 if($option.attr('data-filter') == 'none') {
311 for (var i = 0; i < items.length && jQuery(items[i]).attr('data-field') != undefined; i++) {
312 fields.push(jQuery(items[i]).attr('data-field'));
313 isAscending.push(jQuery('.strata-ui-sort-direction', items[i]).attr('data-strata-sort-direction') == 'asc');
342 var sort = jQuery(element).attr('data-strata-ui-sort');
347 jQuery('.col' + col, element).attr('data-strata-sort', i);
348 jQuery('.col' + col, element).attr('data-strata-sort-direction', isAscending[i] ? 'asc' : 'desc');
366 var filterColumns = jQuery(div).attr('dat
[all...]
/plugin/tplmod/
H A Dscript.js44 jQuery("div.pad div.headings img").first().attr("src", function( i, val ) {
55 jQuery("div.headings.group h1 img,div.navbar-header img").attr("src", function( i, val ) {
117 var url = jQuery( this ).attr('href');
118 var _class = jQuery(this).attr('class');
133 if(optparent.attr('label') && optparent.attr('label').match(/User\s+Tools/i)) return;
150 var url = jQuery( this ).attr('href');
/plugin/diagramsnet/lib/math/jax/input/MathML/
H A Djax.js19attr={};g.attrNames=[];for(var h=0,e=j.attributes.length;h<e;h++){var f=j.attributes[h].name;if(f=…
/plugin/diagramsnet/lib/js/diagramly/vsdx/
H A Dimporter.js9495 Shape.prototype.insertAttributes = function (text, attr) {
9500 … var style = " style=\"" + com.mxgraph.io.vsdx.mxVsdxUtils.getStyleString(attr, ":") + "\"";
/plugin/diagramsnet/lib/js/grapheditor/
H A DGraph.js1677 var attr = all[i].attributes[j];
1679 if (attr.name.length > 2 && attr.name.toLowerCase().substring(0, 2) == 'on')
1681 all[i].removeAttribute(attr.name);
8572 while (attr = attributes.pop())
8574 span.setAttribute(attr.nodeName, attr.nodeValue);
/plugin/diagramsnet/lib/js/
H A Dviewer-static.min.js1425 …&&mxUtils.isNode(a,f.type,f.attr,f.value)&&(b>f.max||b<f.min)?d+=f.countError+"\n":!f.source&&mxUt…
1524attr=c;this.value=d;this.min=null!=e?e:0;this.max=null!=f?f:"n";this.validNeighbors=g;this.countEr… method in mxMultiplicity
1527 …l=function(a,b,c){b=a.model.getValue(b);return this.checkType(a,b,this.type,this.attr,this.value)};
2553 …d:"span"),c=Array.prototype.slice.call(b.attributes);attr=c.pop();)f.setAttribute(attr.nodeName,at…
H A Dviewer.min.js1425 …&&mxUtils.isNode(a,f.type,f.attr,f.value)&&(b>f.max||b<f.min)?d+=f.countError+"\n":!f.source&&mxUt…
1524attr=c;this.value=d;this.min=null!=e?e:0;this.max=null!=f?f:"n";this.validNeighbors=g;this.countEr… method in mxMultiplicity
1527 …l=function(a,b,c){b=a.model.getValue(b);return this.checkType(a,b,this.type,this.attr,this.value)};
2553 …d:"span"),c=Array.prototype.slice.call(b.attributes);attr=c.pop();)f.setAttribute(attr.nodeName,at…
/plugin/diagramsnet/lib/math/config/
H A DAM_HTMLorMML-full.js52attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
53attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
55 …th;s<q;s++){if(o[t[s]]===1&&!r.hasOwnProperty(t[s])){continue}var u=(this.attr||{})[t[s]];if(u==nu…
56 …s]&&!t[s]&&r[s]==null&&typeof(p[s])==="undefined")){p.setAttribute(s,this.attr[s])}}}},HTMLspanEle…
H A DAM_HTMLorMML.js49attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
50attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
H A DAccessible-full.js69attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
70attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
76attr={};g.attrNames=[];for(var h=0,e=j.attributes.length;h<e;h++){var f=j.attributes[h].name;if(f=…
77 …th;s<q;s++){if(o[t[s]]===1&&!r.hasOwnProperty(t[s])){continue}var u=(this.attr||{})[t[s]];if(u==nu…
78 …s]&&!t[s]&&r[s]==null&&typeof(p[s])==="undefined")){p.setAttribute(s,this.attr[s])}}}},HTMLspanEle…
H A DAccessible.js66attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
67attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
73attr={};g.attrNames=[];for(var h=0,e=j.attributes.length;h<e;h++){var f=j.attributes[h].name;if(f=…
H A DMML_HTMLorMML-full.js52attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
53attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
54attr={};g.attrNames=[];for(var h=0,e=j.attributes.length;h<e;h++){var f=j.attributes[h].name;if(f=…
55 …th;s<q;s++){if(o[t[s]]===1&&!r.hasOwnProperty(t[s])){continue}var u=(this.attr||{})[t[s]];if(u==nu…
56 …s]&&!t[s]&&r[s]==null&&typeof(p[s])==="undefined")){p.setAttribute(s,this.attr[s])}}}},HTMLspanEle…
H A DMML_HTMLorMML.js50attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
51attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
52attr={};g.attrNames=[];for(var h=0,e=j.attributes.length;h<e;h++){var f=j.attributes[h].name;if(f=…
H A DTeX-MML-AM_HTMLorMML-full.js66attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.displ…
67attr||!("xmlns" in this.attr))){e.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attr…
73attr={};g.attrNames=[];for(var h=0,e=j.attributes.length;h<e;h++){var f=j.attributes[h].name;if(f=…
75 …th;s<q;s++){if(o[t[s]]===1&&!r.hasOwnProperty(t[s])){continue}var u=(this.attr||{})[t[s]];if(u==nu…
76 …s]&&!t[s]&&r[s]==null&&typeof(p[s])==="undefined")){p.setAttribute(s,this.attr[s])}}}},HTMLspanEle…

1...<<11121314151617181920>>...29