Home
last modified time | relevance | path

Searched refs:hint (Results 1 – 25 of 98) sorted by relevance

1234

/plugin/strata/types/
H A Dpage.php16 function normalize($value, $hint) { argument
20 if(!empty($hint) && substr($hint,-1) == '#') {
21 $value = $hint.$value;
22 resolve_pageid(getNS($hint),$value,$exists);
26 $base = ($hint?:getNS($ID));
48 function render($mode, &$R, &$T, $value, $hint) { argument
57 'desc'=>'Links to a wiki page. The optional hint is treated as namespace for the link. If the hint ends with a #, all values will be treated as fragments.',
58 'hint'
[all...]
H A Dlink.php13 function render($mode, &$renderer, &$triples, $value, $hint) { argument
17 $renderer->interwikilink($value,$hint, strtolower($interwiki[0]), $interwiki[1]);
20 $renderer->windowssharelink($value,$hint);
23 $renderer->externallink($value,$hint);
26 $renderer->emaillink($value,$hint);
29 $renderer->internallink(':'.$value, $hint);
35 function normalize($value, $hint) { argument
55 'desc'=>'Creates a link. This type is multi-purpose: it handles external links, interwiki links, email addresses, windows shares and normal wiki links (basically any link DokuWiki knows of). The optional hint will be used as link title.',
56 'hint'=>'The link title'
H A Ddate.php13 function render($mode, &$R, &$triples, $value, $hint) { argument
15 // use the hint if available
16 $format = $hint ?: 'Y-m-d';
30 function normalize($value, $hint) { argument
31 // use hint if available
33 $format = '!'. ($hint ?: 'Y-m-d');
48 'desc'=>'Stores and displays dates in the YYYY-MM-DD format. The optional hint can give a different format to use.',
50 'hint'=>'different date format'
H A Dimage.php17 function normalize($value, $hint) { argument
46 function render($mode, &$R, &$T, $value, $hint) { argument
47 if(preg_match('/([0-9]+)(?:x([0-9]+))?/',$hint,$captures)) {
65 'desc'=>'Displays an image. The optional hint is treated as the size to scale the image to. Give the hint in WIDTHxHEIGHT format.',
66 'hint'=>'size to scale the image to'
/plugin/strata/helper/
H A Dutil.php73 * Parses a 'name(hint)' pattern.
76 * @return an array with a name and hint, or false
81 list($type, $hint) = $p->type($match[1]);
82 return array($type, $hint);
153 list($type, $hint) = $this->getPredicateType();
154 return $this->loadType($type)->normalize($p, $hint);
166 list($typename, $hint) = $this->getPredicateType();
167 $this->renderField($mode, $R, $T, $p, $typename, $hint);
180 * @param hint optional type hint
183 renderValue($mode, & $R, & $T, $value, $typename, $hint = null, & $type = null) global() argument
208 renderField($mode, & $R, & $T, $values, $typename, $hint = null, & $type = null, $field = null, $separator = ', ') global() argument
[all...]
H A Dsyntax.php36 'aggregate' => array('@\s*([a-z0-9]+)(?:\(([^\)]*)\))?', array('aggregate','hint')),
37 'type' => array('\[\s*([a-z0-9]+)\s*(?:::([^\]]*))?\]', array('type', 'hint')),
174 * @param hint string the type hint of the variable
176 function updateTypemap(&$typemap, $var, $type, $hint=null) { argument
178 $typemap[$var] = array('type'=>$type,'hint'=>$hint);
549 $this->updateTypemap($typemap, $object['text'], $vtype->type, $vtype->hint);
550 $this->updateTypemap($typemap, $object['text'], $type->type, $type->hint);
558 list($type, $hint)
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DAuthority.php28 public function setHint(Hint $hint) argument
30 $this->hint = $hint;
37 return $this->hint;
H A DDSSEAttestationNote.php28 public function setHint(DSSEHint $hint) argument
30 $this->hint = $hint;
37 return $this->hint;
H A DAttestationNote.php28 public function setHint(Hint $hint) argument
30 $this->hint = $hint;
37 return $this->hint;
/plugin/strata/lib/
H A Dstrata_type.php25 * @param hint string a type hint
28 function render($mode, &$renderer, &$triples, $value, $hint) { argument
37 * @param hint string a type hint
40 function normalize($value, $hint) { argument
50 * - hint: an optional string indicating what the type hint's function is
58 'hint'=>false,
H A Dstrata_aggregate.php22 * @param hint string the aggregation hint
25 function aggregate($values, $hint) { argument
34 * - hint: an optional string indicating what the aggregate hint's function is
42 'hint'=>false,
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddmn-js-shared.css26 --hint-button-color: var(--color-blue-205-100-50);
27 --hint-button-hover-color: var(--color-blue-205-100-45);
28 --hint-invalid-color: var(--color-red-360-100-45);
89 .dms-hint {
92 color: var(--hint-color);
95 .dms-hint button {
96 color: var(--hint-button-color);
107 .dms-hint button:hover {
108 color: var(--hint-button-hover-color);
112 color: var(--hint-invalid-color);
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DAbstractTermsAggregation.php106 * The execution hint will be ignored if it is not applicable.
108 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#search-aggregations-bucket-terms-aggregation-execution-hint
110 * @param string $hint Execution hint, use one of self::EXECUTION_HINT_MAP or self::EXECUTION_HINT_GLOBAL_ORDINALS
114 public function setExecutionHint(string $hint): self argument
116 return $this->setParam('execution_hint', $hint);
H A DDiversifiedSampler.php26 * The execution hint will be ignored if it is not applicable.
30 public function setExecutionHint(string $hint): self argument
32 return $this->setParam('execution_hint', $hint);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php112 if ($hint = $argument->getTypeHint()) {
113 $php .= $typeHintReference->isBuiltInParamTypeHint($hint) ? $hint : '\\'.$hint;
/plugin/strata/aggregates/
H A Dmax.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') $values = array_filter($values, 'is_numeric');
21 'desc'=>'Returns the maximum value. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are ignored.',
22 'hint'=>'\'strict\' to ignore non-numeric values',
H A Dmin.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') $values = array_filter($values, 'is_numeric');
21 'desc'=>'Returns the minimum value. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are ignored.',
22 'hint'=>'\'strict\' to ignore non-numeric values',
H A Dsum.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') {
30 'desc'=>'Sums up all items. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are left intact.',
31 'hint'=>'\'strict\' to leave non-numeric values',
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A DImageObject.cfc112 <cffunction name="flipHorizontal" access="public" output="true" returnType="void" hint="Flip an ima…
119 <cffunction name="getImageInfo" access="public" output="true" returntype="struct" hint="Returns ima…
122 <cffunction name="getImageObject" access="public" output="true" returntype="struct" hint="Returns a…
126 <cffunction name="flipVertical" access="public" output="true" returntype="void" hint="Flop an image…
133 <cffunction name="scaleWidth" access="public" output="true" returntype="void" hint="Scale an image …
142 <cffunction name="scaleHeight" access="public" output="true" returntype="void" hint="Scale an image…
150 <cffunction name="resize" access="public" output="true" returntype="void" hint="Resize an image to …
162 <cffunction name="crop" access="public" output="true" returntype="void" hint="Crop an image.">
183 <cffunction name="setOption" access="public" output="true" returnType="void" hint="Sets values for …
226 <cffunction name="addText" access="public" output="true" returntype="void" hint="Add text to an ima…
[all …]
/plugin/impressjs/tpl/dokuwiki/
H A Dimpress.css543 First of all I wanted the hint to appear only when user is idle for a while.
545 hint by 5s using transition-delay.
548 make an assumption that I'll only show the hint on the first step. And when
549 the step is changed hide the hint, because I can assume that user already
573 .hint {
619 This way user will not see the hint moving down.
629 Now we 'enable' the hint when presentation is initialized ...
631 .impress-enabled .hint { display: block }
636 .impress-on-bored .hint {
638 We remove the transparency and position the hint in its default fixed
[all …]
/plugin/authg2fa/
H A Dauth.php34 $hint = $this->getConf("g2fa_hint");
43 else if($hint) {
/plugin/struct/action/
H A Dedit.php162 $hint = hsc($field->getColumn()->getTranslatedHint());
163 $class = $hint ? 'hashint' : '';
178 $html .= "<span class=\"label $class\" title=\"$hint\">$trans</span>";
/plugin/crypto/
H A Dsyntax.php60 $hint = $this->xml_property($match, "hint", $this->getLang('standard_hint'));
65 $options = 'id="'.$id.'" class="encrypted" hint="'.$hint.'"';
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
H A DFunctionDeclarationArgumentSpacingSniff.php234 $hint = $tokens[$nextToken]['content'];
255 $data = array($hint);
265 $hint,
318 $hint = $tokens[$nextToken]['content'];
345 $hint,
/plugin/struct/helper/
H A Dfield.php199 $hint = hsc($field->getColumn()->getTranslatedHint());
200 $class = $hint ? 'hashint' : '';
210 $html .= "<span class=\"label $class\" title=\"$hint\">$trans$required</span>";

1234