Home
last modified time | relevance | path

Searched refs:element (Results 1 – 19 of 19) sorted by relevance

/dokuwiki/inc/Form/
H A DLegacyForm.php28 foreach ($oldform->_content as $element) {
29 [$ctl, $attr] = $this->parseLegacyAttr($element);
31 if (is_array($element)) {
102 $this->addHTML($element);
165 foreach ($this->elements as $element) {
166 if (is_a($element, 'dokuwiki\Form\HTMLElement')) {
167 $legacy->_content[] = $element->toHTML();
168 } elseif (is_a($element, 'dokuwiki\Form\InputElement')) {
169 /** @var InputElement $element */
170 $data = $element
[all...]
H A DForm.php78 #region element query function
91 * Get the position of the element in the form or false if it is not in the form
97 * @param Element $element
101 public function getElementPosition(Element $element) argument
103 return array_search($element, $this->elements, true);
107 * Returns a reference to the element at a position.
109 * first (underflow) or last (overflow) element.
123 * Gets the position of the first of a type of element
127 * @return false|int position of element if found, otherwise false
141 * Gets the position of the first element matchin
170 addElement(Element $element, $pos = 1) global() argument
189 replaceElement(Element $element, $pos) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/
H A DElement.php27 * Raw element value
31 public $element;
41 $this->element = $encoded;
34 var $element; global() variable in phpseclib\\File\\ASN1\\Element
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php252 * Set element/attribute key/value pairs of HTML attributes
412 foreach ($this->replace_url_attributes as $element => $attributes) {
413 $this->replace_urls($document, $element, $attributes);
505 foreach ($elements as $element) {
507 if ($element->hasAttribute($attribute)) {
508 $value = $this->registry->call(Misc::class, 'absolutize_url', [$element->getAttribute($attribute), $this->base]);
511 $element->setAttribute($attribute, $value);
540 foreach ($elements as $element) {
546 if ($element->hasAttributes()) {
548 foreach ($element
[all...]
H A DParser.php68 public $element = ['']; variable in SimplePie\\Parser
269 [$this->namespace[], $this->element[]] = $this->split_ns($tag);
297 $this->data['data'] .= '<' . end($this->element);
307 $this->data =& $this->data['child'][end($this->namespace)][end($this->element)][];
309 if ((end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_ATOM_03 && in_array(end($this->element), ['title', 'tagline', 'copyright', 'info', 'summary', 'content']) && isset($attribs['']['mode']) && $attribs['']['mode'] === 'xml')
310 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_ATOM_10 && in_array(end($this->element), ['rights', 'subtitle', 'summary', 'info', 'title', 'content']) && isset($attribs['']['type']) && $attribs['']['type'] === 'xhtml')
311 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_20 && in_array(end($this->element), ['title']))
312 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_090 && in_array(end($this->element), ['title']))
313 || (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_RSS_10 && in_array(end($this->element), ['title']))) {
332 if (end($this->namespace) === \SimplePie\SimplePie::NAMESPACE_XHTML && !in_array(end($this->element), ['are
[all...]
H A DLocator.php172 foreach ($elements as $element) {
173 if ($element->hasAttribute('href')) {
174 $base = $this->registry->call(Misc::class, 'absolutize_url', [trim($element->getAttribute('href')), $this->http_base]);
179 $this->base_location = method_exists($element, 'getLineNo') ? $element->getLineNo() : 0;
H A DMisc.php94 * Get a HTML/XML element from a HTML string
132 public static function element_implode($element) argument
134 $full = "<$element[tag]";
135 foreach ($element['attribs'] as $key => $value) {
139 if ($element['self_closing']) {
142 $full .= ">$element[content]</$element[tag]>";
H A DItem.php133 * Get data for an item-level element
135 * This method allows you to get access to ANY element/attribute that is a
136 * sub-element of the item/entry tag.
159 * @param array $element
162 public function get_base($element = []) argument
164 if (!empty($element['xml_base_explicit']) && isset($element['xml_base'])) {
165 return $element['xml_base'];
171 return $this->feed->get_base($element);
929 * @todo If an element exist
[all...]
H A DSource.php89 public function get_base($element = []) argument
91 return $this->item->get_base($element);
H A DSimplePie.php1444 * Set element/attribute key/value pairs of HTML attributes
2128 * Get data for an feed-level element
2130 * This method allows you to get access to ANY element/attribute that is a
2131 * sub-element of the opening feed tag.
2134 * namespace and tag name. Each element has `attribs`, `data` and `child`
2185 * Get data for an channel-level element
2187 * This method allows you to get access to ANY element/attribute in the
2231 * Get data for an channel-level element
2233 * This method allows you to get access to ANY element/attribute in the
2280 * @param array $element
2283 get_base($element = []) global() argument
[all...]
/dokuwiki/lib/plugins/authad/
H A Daction.php83 $element = $form->getElementAt($pos);
84 $element->val($usr);
89 $element = $form->addDropdown('dom', $domains, $this->getLang('domain'), $pos + 1);
90 $element->addClass('block');
/dokuwiki/lib/scripts/
H A Dfileuploader.js26 * Searches for a given element in the array, returns -1 if it is not present.
53 qq.attach = function(element, type, fn){ argument
54 if (element.addEventListener){
55 element.addEventListener(type, fn, false);
56 } else if (element.attachEvent){
57 element.attachEvent('on' + type, fn);
60 qq.detach = function(element, type, fn){ argument
61 if (element.removeEventListener){
62 element.removeEventListener(type, fn, false);
63 } else if (element
85 remove(element) global() argument
121 css(element, styles) global() argument
129 hasClass(element, name) global() argument
133 addClass(element, name) global() argument
138 removeClass(element, name) global() argument
142 setText(element, text) global() argument
150 children(element) global() argument
164 getByClass(element, className) global() argument
304 _createUploadButton(element) global() argument
670 element: null, global() property in qq.UploadDropZone._options
757 element: null, global() property in qq.UploadButton._options
[all...]
H A Dfileuploaderextended.js76 element: null,
125 this._element = this._options.element;
H A Dmedia.js667 element: document.getElementById('mediamanager__uploader'),
/dokuwiki/lib/scripts/jquery/
H A Djquery-ui.min.js6 !function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(V){"use strict";V.ui=V.ui||{};V.ui.version="1.13.2";var n,i=0,a=Array.prototype.hasOwnProperty,r=Array.prototype.slice;V.cleanData=(n=V.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=V._data(i,"events"))&&e.remove&&V(i).triggerHandler("remove");n(t)}),V.widget=function(t,i,e){var s,n,o,a={},r=t.split(".")[0],l=r+"-"+(t=t.split(".")[1]);return e||(e=i,i=V.Widget),Array.isArray(e)&&(e=V.extend.apply(null,[{}].concat(e))),V.expr.pseudos[l.toLowerCase()]=function(t){return!!V.data(t,l)},V[r]=V[r]||{},s=V[r][t],n=V[r][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},V.extend(n,s,{version:e.version,_proto:V.extend({},e),_childConstructors:[]}),(o=new i).options=V.widget.extend({},o.options),V.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}a[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=V.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},a,{constructor:n,namespace:r,widgetName:t,widgetFullName:l}),s?(V.each(s._childConstructors,function(t,e){var i=e.prototype;V.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),V.widget.bridge(t,n),n},V.widget.extend=function(t){for(var e,i,s=r.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],a.call(s[n],e)&&void 0!==i&&(V.isPlainObject(i)?t[e]=V.isPlainObject(t[e])?V.widget.extend({},t[e],i):V.widget.extend({},i):t[e]=i);return t},V.widget.bridge=function(o,e){var a=e.prototype.widgetFullName||o;V.fn[o]=function(i){var t="string"==typeof i,s=r.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=V.data(this,a);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?V.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:V.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=V.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=V.data(this,a);t?(t.option(i||{}),t._init&&t._init()):V.data(this,a,new e(i,this))})),n}},V.Widget=function(){},V.Widget._childConstructors=[],V.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=V(e||this.defaultElement||this)[0],this.element=V(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=V(),this.hoverable=V(),this.focusable=V(),this.classesElementLookup={},e!==this&&(V.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=V(e.style?e.ownerDocument:e.document||e),this.window=V(this.document[0].defaultView||this.document[0].parentWindow)),this.options=V.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:V.noop,_create:V.noop,_init:V.noop,destroy:function(){var i=this;this._destroy(),V.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:V.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return V.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=V.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=V(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],a=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=a.classesElementLookup[t[s]]||V(),i=n.add?(function(){var i=[];n.element.each(function(t,e){V.map(a.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),a._on(V(i),{remove:"_untrackClassesElement"})}(),V(V.uniqueSort(i.get().concat(n.element.get())))):V(i.not(n.element).get()),a.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=V.extend({element:this.element,classe property in tooltips
[all...]
/dokuwiki/inc/
H A Dform.php18 * Every pseudo-tag must have the key '_elem' set to the name of the element.
20 * element it contains.
22 * Standard practice is for non-attribute keys in a pseudo-element to start
23 * with '_'. Other keys are HTML attributes that will be included in the element
24 * tag. That way, the element output functions can pass the pseudo-element
58 * @param mixed $params Parameters for the HTML form element; Using the deprecated
144 * Appends a content element to the form.
145 * The element can be either a pseudo-tag or string.
160 * Inserts a content element a
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php197 $encoded = $encoded->element;
856 return $source->element;
1270 // element shall always be present" but none-the-less I've seen X509 certs where it isn't and if the
H A DX509.php1941 $value = strtoupper(preg_replace_callback('#[^\x20-\x7E]#', $callback, $value->element));
2295 * SPKAC's are produced by the HTML5 keygen element:
3632 // Assume the element is a bitstring-packed key.
3633 $decoded = ASN1::decodeBER($key->element);
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css205 /* button icon element(s) */
834 position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */