Home
last modified time | relevance | path

Searched refs:identifier (Results 1 – 25 of 199) sorted by relevance

12345678

/plugin/qna/syntax/
H A Dblock.php60 $identifier = $this->questionToIdentifier($question);
62 $data = array('open_question', $question, $identifier);
121 $identifier = str_replace(':', '', cleanID($title));
122 $identifier = ltrim($identifier, '0123456789._-');
124 if (\dokuwiki\Utf8\PhpString::strlen($identifier) > $this->maxIdLength) {
125 $identifier = \dokuwiki\Utf8\PhpString::substr($identifier, 0, $this->maxIdLength);
128 $identifier = rtrim($identifier, '_');
130 if (isset($this->questionId[$identifier])) {
131 $identifier .= '_' . ++$this->questionId[$identifier];
134 $this->questionId[$identifier] = 1;
[all …]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMention.php28 private string $identifier;
30 public function __construct(string $name, string $prefix, string $identifier, ?string $label = null)
34 $this->identifier = $identifier;
36 parent::__construct('', $label ?? \sprintf('%s%s', $prefix, $identifier));
50 return $this->identifier;
26 private $identifier; global() variable in League\\CommonMark\\Extension\\Mention\\Mention
33 __construct(string $symbol, string $identifier, string $label = null) global() argument
H A DMentionParser.php64 [$prefix, $identifier] = $inlineContext->getSubMatches();
66 $mention = $this->mentionGenerator->generateMention(new Mention($this->name, $prefix, $identifier));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
H A DVolumeVolumeInfoIndustryIdentifiers.php25 public $identifier; variable in Google\\Service\\Books\\VolumeVolumeInfoIndustryIdentifiers
34 public function setIdentifier($identifier) argument
36 $this->identifier = $identifier;
43 return $this->identifier;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SiteVerification/
H A DSiteVerificationWebResourceGettokenRequestSite.php25 public $identifier; variable in Google\\Service\\SiteVerification\\SiteVerificationWebResourceGettokenRequestSite
34 public function setIdentifier($identifier) argument
36 $this->identifier = $identifier;
43 return $this->identifier;
H A DSiteVerificationWebResourceResourceSite.php25 public $identifier; variable in Google\\Service\\SiteVerification\\SiteVerificationWebResourceResourceSite
34 public function setIdentifier($identifier) argument
36 $this->identifier = $identifier;
43 return $this->identifier;
/plugin/doi/Resolver/
H A DIsbnGoogleBooksResolver.php21 foreach ($data['industryIdentifiers'] as $identifier) {
22 if ($identifier['type'] === 'ISBN_13') {
23 $result['id'] = $identifier['identifier'];
26 if ($identifier['type'] === 'ISBN_10') {
27 $result['id'] = $identifier['identifier'];
/plugin/authgoogle/google/contrib/
H A DGoogle_SiteVerificationService.php200 public $identifier; variable in Google_SiteVerificationWebResourceGettokenRequestSite
202 public function setIdentifier( $identifier) { argument
203 $this->identifier = $identifier;
206 return $this->identifier;
274 public $identifier; variable in Google_SiteVerificationWebResourceResourceSite
276 public function setIdentifier( $identifier) { argument
277 $this->identifier = $identifier;
280 return $this->identifier;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D64.64.js1identifier",next:"@nestedVariable"}],[/@variables/,"type.identifier"],[/[^\\$\[\]"]+/,"string"],[/…
H A D30.30.js1identifier.quote",bracket:"@open",next:"@quoted_identifier"}],["LEX$",{token:"keyword",bracket:"@o…
H A D54.54.js1identifier:/[a-zA-Z_][\w]*/,symbols:/[=><:+\-*\/%\.,]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1… property in AnonymousFunction4145e96d0100.r
H A D63.63.js5identifier:/[a-zA-Z_][\w$]*/,attributes:["@autoclosure","@noescape","@noreturn","@NSApplicationMai… property in AnonymousFunctione09f0dad0100.i
H A D9.9.js.map1identifier', next: '@popall' },\n '@default': { token: 'key.identifier', ne…
H A D57.57.js.map1identifier: '-?-?([a-zA-Z]|(\\\\\\\\(([0-9a-fA-F]{1,6}\\\\s?)|[^[0-9a-fA-F])))([\\\\w\\\\-]|(\\\\\…
H A D1.1.js1identifier:/(?:[a-zA-Z_][a-zA-Z0-9_$\.]*|\\\S+ )/,systemcall:/[$][a-zA-Z0-9_]+/,timeunits:/s|ms|us… property in AnonymousFunction3eb7205d0100.r
H A D55.55.js1identifier"]],[/@name(?=[ \t]*:(?!:))/,"variable"],[/(\.)(@name|@symbols)/,["operator",{token:"@re…
H A D30.30.js.map1identifier cases\n [\n /\"/,\n {\n tok…
H A D64.64.js.map1identifier', next: '@nestedVariable' }],\n [/@variables/, 'type.identifier'],\n …
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DIdentitytoolkitRelyingpartyCreateAuthUriRequest.php53 public $identifier; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyCreateAuthUriRequest
188 public function setIdentifier($identifier) argument
190 $this->identifier = $identifier;
197 return $this->identifier;
/plugin/usecounter/
H A Ddokuwiki_plugin_page.wiki4 …at can be used in other plugins to count the occurences of any object with an arbitrary identifier.
33 … the object with the given identifier is used (once more). The helper internally counts the amount…
36 …n instance, so a particular identifier could be used accross multiple plugins. Keep this in mind w…
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DButtonManager.java36 int identifier = 0; in maxIdentifier() local
40 if (object.getIdentifier() > identifier) { in maxIdentifier()
41 identifier = object.getIdentifier(); in maxIdentifier()
44 return identifier; in maxIdentifier()
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DAnnotationException.php91 * @param string $identifier
96 public static function semanticalErrorConstants($identifier, $context = null) argument
100 $identifier,
H A DDocParser.php928 $identifier = $this->Identifier();
930 … if ( ! defined($identifier) && false !== strpos($identifier, '::') && '\\' !== $identifier[0]) {
931 list($className, $const) = explode('::', $identifier);
969 $identifier = $className . '::' . $const;
974 $classPos = stripos($identifier, '::class');
975 if ($classPos === strlen($identifier) - 7) {
976 return substr($identifier, 0, $classPos);
979 if (!defined($identifier)) {
980 throw AnnotationException::semanticalErrorConstants($identifier, $this->context);
983 return constant($identifier);
/plugin/combo/action/
H A Drouter.php382 $identifier = $ID;
395 $pageId = PageUrlPath::decodePageId($identifier);
429 if ($identifier != $page->getUrlId()) {
450 // We let the process go with the new identifier
460 $canonicalDatabasePage = DatabasePageRow::createFromCanonical($identifier);
467 if ($canonicalPage->getUrlId() === $identifier) {
486 $aliasRequestedPage = DatabasePageRow::createFromAlias($identifier)->getMarkupPath();
509 LogUtility::msg("The alias type ({$buildAlias->getType()}) is unknown. A permanent redirect was performed for the alias $identifier");
590 $startPage = getNS($identifier) . ':' . $conf['start'];
599 $startPage = getNS($identifier)
[all...]
/plugin/imapmarkers/
H A DREADME.md56 **Area with identifier**: ```[[LINK|IDENTIFIER|TITLE@COORDINATES]]```
58 **Area without identifier**: ```[[LINK|TITLE@COORDINATES]]```
63 If the identifier is blank or omited and you click the area, the area is shown until you click it a…
65 ```IDENTIFIER``` is a page-unique identifier for this area.
66 This identifier is later used in a clickable element, say **reference**, to show the marker.
67 If the identifier is blank or omited you can't refer to it.
144 … click a reference, the marker is shown in the middle of the **area** with the same **identifier**.
150 ```IDENTIFIER``` refers to the **areas** identifier.
151 You may define multiple references for one identifier.
155 Example: ```{{imapmloc>CON1|Asia}}``` -- Refers to the area with ```CON1``` as identifier.

12345678