| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/ |
| H A D | ControlBag.php | 32 protected $controls; variable in FreeDSx\\Ldap\\Control\\ControlBag 38 public function __construct(Control ...$controls) argument 40 $this->controls = $controls; 52 foreach ($this->controls as $ctrl) { 61 return array_search($control, $this->controls, true) !== false; 72 foreach ($this->controls as $control) { 87 public function add(Control ...$controls) argument 89 foreach ($controls as $control) { 90 $this->controls[] = $control; 102 public function set(Control ...$controls) argument [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ |
| H A D | LdapMessage.php | 78 protected $controls; variable in FreeDSx\\Ldap\\Protocol\\LdapMessage 84 public function __construct(int $messageId, Control\Control ...$controls) argument 87 $this->controls = new ControlBag(...$controls); 103 public function controls(): ControlBag function in FreeDSx\\Ldap\\Protocol\\LdapMessage 105 return $this->controls; 120 if (count($this->controls->toArray()) !== 0) { 122 $controls = Asn1::context(0, Asn1::sequenceOf()); 123 foreach ($this->controls->toArray() as $control) { 124 $controls->addChild($control->toAsn1()); 126 $asn1->addChild($controls); [all …]
|
| H A D | ClientProtocolHandler.php | 66 protected $controls; variable in FreeDSx\\Ldap\\Protocol\\ClientProtocolHandler 83 $this->controls = new ControlBag(); 90 public function controls(): ControlBag function in FreeDSx\\Ldap\\Protocol\\ClientProtocolHandler 92 return $this->controls; 148 public function send(RequestInterface $request, Control ...$controls): ?LdapMessageResponse argument 153 $controls,
|
| /plugin/slider/ |
| D | screen.css | 42 .bx-wrapper .bx-controls-auto { 73 .bx-wrapper .bx-controls-auto .bx-controls-auto-item { 101 background: url(images/controls.png) no-repeat 0 -32px; 106 background: url(images/controls.png) no-repeat -43px -32px; 117 .bx-wrapper .bx-controls-direction a { 128 .bx-wrapper .bx-controls-direction a.disabled { 134 .bx-wrapper .bx-controls-auto { 138 .bx-wrapper .bx-controls-auto .bx-start { 144 background: url(images/controls.png) -86px -11px no-repeat; 148 .bx-wrapper .bx-controls-auto .bx-start:hover, [all …]
|
| D | jquery.bxslider.js | 53 controls: true, property 145 slider.controls = {}; 239 slider.controls.el = $('<div class="bx-controls" />'); 254 if(slider.settings.controls) appendControls(); 258 …if(slider.settings.controls || slider.settings.autoControls || slider.settings.pager) slider.viewp… 342 if (slider.settings.controls) updateDirectionControls(); 637 slider.controls.el.addClass('bx-has-pager').append(slider.pagerEl); 652 slider.controls.next = $('<a class="bx-next" href="">' + slider.settings.nextText + '</a>'); 653 slider.controls.prev = $('<a class="bx-prev" href="">' + slider.settings.prevText + '</a>'); 655 slider.controls.next.bind('click', clickNextBind); [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ |
| H A D | RequestContext.php | 28 protected $controls; variable in FreeDSx\\Ldap\\Server\\RequestContext 36 * @param ControlBag $controls 39 public function __construct(ControlBag $controls, TokenInterface $token) argument 41 $this->controls = $controls; 48 public function controls(): ControlBag function in FreeDSx\\Ldap\\Server\\RequestContext 50 return $this->controls;
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/ |
| H A D | LdapClient.php | 122 public function compare($dn, string $attributeName, string $value, Control ...$controls): bool argument 125 …his->sendAndReceive(Operations::compare($dn, $attributeName, $value), ...$controls)->getResponse(); 138 public function create(Entry $entry, Control ...$controls): LdapMessageResponse argument 140 $response = $this->sendAndReceive(Operations::add($entry), ...$controls); 155 public function read(string $entry = '', $attributes = [], Control ...$controls): ?Entry argument 158 return $this->readOrFail($entry, $attributes, ...$controls); 176 public function readOrFail(string $entry = '', $attributes = [], Control ...$controls): Entry argument 178 $entryObj = $this->search(Operations::read($entry, ...$attributes), ...$controls)->first(); 197 public function delete(string $entry, Control ...$controls): LdapMessageResponse argument 199 return $this->sendAndReceive(Operations::delete($entry), ...$controls); [all …]
|
| /plugin/s5reloaded/ui/thesis/ |
| D | pretty.css | 299 #controls :active 304 #controls :focus 437 div#controls {position: absolute; left: 0; bottom: 0; width: 100%; text-align: center; font: bold 1… 438 html>body div#controls {background: transparent; position: fixed; padding: 0; top: auto; text-align… 439 #controls #sheet {display: none;} 440 #controls #controlForm {height: 32px; width: 100%; text-align: center; vertical-align: middle;} 441 #controls #navLinks {border-top: 1px solid #999; overflow: hidden; padding: 0; margin: 0; height: 3… 442 #controls #navLinks ul {margin: 0 auto; padding: 0; height: 32px; width: 500px; white-space: nowrap… 443 #controls #navLinks ul li {list-style: none; display: inline; margin: 0; padding: 0; float: left; h… 444 #controls #navLinks ul li.vr {list-style: none; display: inline; margin: 0px 2px; padding: 0; float… [all …]
|
| /plugin/jplayer/vendor/happyworm/jplayer/lib/circle-player/skin/ |
| D | circle.player.css | 91 .cp-controls { 96 .cp-controls li{ 104 .cp-controls li a{ 114 .cp-controls .cp-play { 115 background:url("controls.jpg") 0 0 no-repeat; 118 .cp-controls .cp-play:hover { 119 background:url("controls.jpg") -50px 0 no-repeat; 122 .cp-controls .cp-pause { 123 background:url("controls.jpg") 0 -50px no-repeat; 126 .cp-controls .cp-pause:hover { [all …]
|
| /plugin/asciidocjs/node_modules/clean-css/ |
| D | README.md | 131 * `compatibility` - controls compatibility mode used; defaults to `ie10+`; see [compatibility modes… 132 * `fetch` - controls a function for handling remote requests; see [fetch option](#fetch-option) for… 133 * `format` - controls output CSS formatting; defaults to `false`; see [formatting options](#formatt… 134 * `inline` - controls `@import` inlining rules; defaults to `'local'`; see [inlining options](#inli… 135 * `inlineRequest` - controls extra options for inlining remote `@import` rules, can be any of [HTTP… 136 * `inlineTimeout` - controls number of milliseconds after which inlining a remote `@import` fails; … 137 * `level` - controls optimization level used; defaults to `1`; see [optimization levels](#optimizat… 138 * `rebase` - controls URL rebasing; defaults to `true`; 139 * `rebaseTo` - controls a directory to which all URLs are rebased, most likely the directory under … 140 * `returnPromise` - controls whether `minify` method returns a Promise object or not; defaults to `… [all …]
|
| /plugin/panoview/ |
| H A D | style.css | 41 div.panoview_plugin .controls 60 div.panoview_plugin .controls a, div.panoview_plugin .controls span 67 div.panoview_plugin .controls a img, div.panoview_plugin .controls span img { 71 div.panoview_plugin .controls a:active, div.panoview_plugin .controls span:active {
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/ |
| H A D | ProxyRequestHandler.php | 64 $this->ldap()->sendAndReceive($modify, ...$context->controls()->toArray()); 72 $this->ldap()->sendAndReceive($modifyDn, ...$context->controls()->toArray()); 80 $this->ldap()->sendAndReceive($delete, ...$context->controls()->toArray()); 88 $this->ldap()->sendAndReceive($add, ...$context->controls()->toArray()); 96 return $this->ldap()->search($search, ...$context->controls()->toArray()); 104 …$response = $this->ldap()->sendAndReceive($compare, ...$context->controls()->toArray())->getRespon… 117 $this->ldap()->send($extended, ...$context->controls()->toArray());
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/ |
| H A D | ClientProtocolContext.php | 59 protected $controls; variable in FreeDSx\\Ldap\\Protocol\\ClientProtocolHandler\\ClientProtocolContext 68 array $controls, argument 74 $this->controls = $controls; 91 return $this->controls; 117 ...$this->controls
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Paging/ |
| H A D | PagingRequest.php | 40 private $controls; variable in FreeDSx\\Ldap\\Server\\Paging\\PagingRequest 75 ControlBag $controls, argument 82 $this->controls = $controls; 139 public function controls(): ControlBag function in FreeDSx\\Ldap\\Server\\Paging\\PagingRequest 141 return $this->controls;
|
| /plugin/revealjs/css/ |
| D | reveal.css | 223 .reveal .controls { 234 .reveal .controls button { 253 .reveal .controls .controls-arrow:before, 254 .reveal .controls .controls-arrow:after { 267 .reveal .controls .controls-arrow { 271 .reveal .controls .controls-arrow:before { 274 .reveal .controls .controls-arrow:after { 277 .reveal .controls .controls-arrow:hover:before { 280 .reveal .controls .controls-arrow:hover:after { 283 .reveal .controls .controls-arrow:active:before { [all …]
|
| /plugin/popupviewer/ |
| D | style.css | 18 #popupviewer > .controls > a { 57 #popupviewer > .controls > .content.isImage > a { 61 #popupviewer > .controls > .content.isImage img { 65 #popupviewer > .controls > .content { 95 #popupviewer > .controls > .additionalContent { 108 #popupviewer > .controls {
|
| /plugin/jplayer/vendor/happyworm/jplayer/dist/skin/pink.flag/css/ |
| D | jplayer.pink.flag.css | 101 .jp-video .jp-controls-holder { 108 .jp-audio .jp-controls-holder { 111 .jp-audio-stream .jp-controls-holder { 114 .jp-controls { 121 .jp-audio .jp-controls, 122 .jp-audio-stream .jp-controls { 125 .jp-audio-stream .jp-controls { 128 .jp-video .jp-controls { 134 .jp-controls button { 145 /* @group single player controls */ [all …]
|
| D | jplayer.pink.flag.min.css | 1 …controls-holder{clear:both;width:440px;margin:0 auto 10px;position:relative;overflow:hidden}.jp-au…
|
| /plugin/jplayer/vendor/happyworm/jplayer/src/skin/pink.flag/scss/ |
| D | jplayer.pink.flag.scss | 106 .jp-video .jp-controls-holder { 114 .jp-audio .jp-controls-holder { 117 .jp-audio-stream .jp-controls-holder { 121 .jp-controls { 129 .jp-audio .jp-controls, 130 .jp-audio-stream .jp-controls { 134 .jp-audio-stream .jp-controls { 138 .jp-video .jp-controls { 144 .jp-controls button { 156 /* @group single player controls */ [all …]
|
| /plugin/s5/ui/yatil/ |
| D | framing.css | 10 div#controls {left: 50%; top: 0; width: 50%; height: 100%;} 11 #footer>div#controls {bottom: 0; top: auto; height: auto;} 13 div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 21 div#controls {background: #BBD;}
|
| /plugin/s5/ui/flower/ |
| D | framing.css | 10 /*div#controls {left: 50%; top: 0; width: 50%; height: 100%;} 12 div#controls {bottom: 0; top: auto; height: auto;} 14 div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 23 div#controls {background: #BBD;}
|
| D | pretty.css | 9 #controls :active {color: #88A !important;} 10 #controls :focus {outline: 1px dotted #227;} 57 div#controls {position: absolute; z-index: 1; left: 50%; top: 0; 60 #footer>div#controls {position: fixed; bottom: 0; padding: 1em 0; 62 div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 64 div#controls a {font-size: 2em; padding: 0; margin: 0 0.5em; 67 div#controls select {visibility: hidden; background: #DDD; color: #227;} 68 div#controls div:hover select {visibility: visible;}
|
| /plugin/s5/ui/pixel/ |
| D | framing.css | 10 /*div#controls {left: 50%; top: 0; width: 50%; height: 100%;} 12 div#controls {bottom: 0; top: auto; height: auto;} 14 div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 23 div#controls {background: #BBD;}
|
| /plugin/s5/ui/blue/ |
| D | framing.css | 10 /*div#controls {left: 50%; top: 0; width: 50%; height: 100%;} 12 div#controls {bottom: 0; top: auto; height: auto;} 14 div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 23 div#controls {background: #BBD;}
|
| /plugin/s5/ui/dokuwiki/ |
| D | pretty.css | 10 #controls :active {color: #436976 !important;} 11 #controls :focus {outline: 1px dotted #436976;} 47 div#controls {position: absolute; left: 50%; bottom: 0; 50 html>body div#controls {position: fixed; padding: 0 0 1em 0; 52 div#controls form {position: absolute; bottom: 0; right: 0; width: 100%; 54 #controls #navLinks a {padding: 0; margin: 0 0.5em; 57 #controls #navList {height: 1em;} 58 #controls #navList #jumplist {position: absolute; bottom: 0; right: 0; background: #fff; color: #43…
|