Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 11 of 11) sorted by path

/dokuwiki/
H A Dfeed.php33 $opt = rss_parseOptions(); global() variable
204 rss_buildItems(& $rss, & $data, $opt) global() argument
492 rssRecentChanges($opt) global() argument
511 rssListNamespace($opt) global() argument
535 rssSearch($opt) global() argument
/dokuwiki/inc/
H A Dform.php1131 foreach ($attrs['_options'] as $opt) {
1132 @list($value, $text, $select, $disabled) = $opt;
/dokuwiki/lib/plugins/acl/
H A Dadmin.php148 foreach ($acl as $where => $opt) {
149 foreach ($opt as $who => $perm) {
/dokuwiki/lib/plugins/popularity/lang/en/
H A Dintro.txt5 You are encouraged to repeat this step from time to time, or even better to opt for an automated monthly dispatch, to keep developers informed when your wiki grows. Your repeated data sets will be identified by an anonymous ID.
/dokuwiki/lib/scripts/
H A Dedit.js170 jQuery.each(opts, function (_, opt) { argument
172 var str = "\n" + opt,
H A Dmedia.js179 jQuery.each(opts, function (_, opt) { argument
182 .attr('id', 'media__' + opt.id);
189 .text(opt.label);
192 jQuery.each(opt.btns, function (i, text) {
196 .attr('id', "media__" + opt.id + "btn" + (i + 1))
198 .on('click', bind(dw_mediamanager.setOpt, opt.id));
201 .attr('src', DOKU_BASE + 'lib/images/media_' + opt.id + '_' + text + '.png');
385 set_fileview_opt: function (opt, new_val) {
387 new_val = jQuery('form.options li.' + opt[1] + ' input')
395 if (new_val !== dw_mediamanager.view_opts[opt[
784 AnonymousFunction3b0ef35d1100(_, opt) global() argument
[all...]
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE214 3. You may opt to apply the terms of the ordinary GNU General Public
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1188 foreach ($opts as $opt) {
1189 if ($opt['accessMethod'] == 'id-ad-caIssuers') {
1193 if (isset($opt['accessLocation']['uniformResourceIdentifier'])) {
1194 $url = $opt['accessLocation']['uniformResourceIdentifier'];
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE211 3. You may opt to apply the terms of the ordinary GNU General Public
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php888 $opt = explode(':', $option, 2);
889 if (isset($opt[0], $opt[1])) {
890 $opt[0] = trim($opt[0]);
891 $opt[1] = trim($opt[1]);
892 switch ($opt[0]) {
894 $audio = $opt[1];
898 $video = $opt[
[all...]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php251 $opt = array_shift($arg);
254 if (!isset($this->setup[$this->command]['opts'][$opt])) {
255 throw new Exception("No such option '$opt'", Exception::E_UNKNOWN_OPT);
259 if ($this->setup[$this->command]['opts'][$opt]['needsarg']) {
264 throw new Exception("Option $opt requires an argument",
267 $this->options[$opt] = $val;
269 $this->options[$opt] = true;
276 $opt = substr($arg, 1);
277 if (!isset($this->setup[$this->command]['short'][$opt])) {
280 $opt
[all...]