Home
last modified time | relevance | path

Searched refs:uid (Results 176 – 200 of 223) sorted by path

123456789

/plugin/statistics/
H A Ddb.sql69 ALTER TABLE `stats_access` ADD `uid` VARCHAR(50) NOT NULL;
158 `uid` VARCHAR(50) NOT NULL,
175 `uid` VARCHAR(50) NOT NULL
187 `uid` VARCHAR(50) NOT NULL,
202 ALTER TABLE `stats_session` ADD INDEX `uid` (`uid`);
226 `uid` VARCHAR(50) NOT NULL,
H A Dscript.js14 var uid = DokuCookie.getValue('plgstats');
15 if (!uid) {
16 uid = now.getTime() + '-' + Math.floor(Math.random() * 32000);
17 DokuCookie.setValue('plgstats', uid);
21 uid: uid, property in plugin_statistics.data
/plugin/statistics/inc/
H A DStatisticsLogger.class.php14 private $uid; variable in StatisticsLogger
32 $this->uid = $this->getUID();
41 $uid = $_REQUEST['uid'];
42 if(!$uid) $uid = get_doku_pref('plgstats', false);
43 if(!$uid) $uid = session_id();
44 return $uid;
223 $uid
[all...]
/plugin/task/syntax/
H A Dtask.php270 $uid = hsc($ID.'@'.$_SERVER['SERVER_NAME']);
275 $out = '<a href="'.$link.'" class="uid" title="'.$uid.'">'
/plugin/tbt/
H A Dsyntax.php65 …$renderer->doc .= '<span onclick="tbt_'.$uid.'.startTyping(\'textDestination_'.$uid.'\', TimeBased…
66 $renderer->doc .= '<div id="textDestination_'.$uid.'" class="tbtdest"> </div>';
72 …$renderer->doc .= 'tbt_'.$uid.'.startTyping("textDestination_'.$uid.'", TimeBasedText_'.$uid.');'.…
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DFileInfo.php25 protected $uid = 0; variable in splitbrain\\PHPArchive\\FileInfo
83 $file->setUid($stat['uid']);
164 return $this->uid;
168 * @param int $uid
170 public function setUid($uid) argument
172 $this->uid = $uid;
H A DTar.php522 * @param int $uid
530 protected function writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') argument
553 $uid = sprintf("%6s ", decoct($uid));
559 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime);
615 $return['uid'] = OctDec(trim($header['uid']));
654 $fileinfo->setUid($header['uid']);
/plugin/virtualgroup/
H A Dadmin.php
/plugin/webcode/vendor/
H A Dfirebug-lite-1.4.js2942 delete Firebug.Lite.Proxy._callbacks[uid]
6387 }var uid=ElementCache(node);
6395 …(typeof uid!="undefined"){html.push('<div class="objectBox-element" ','id="',uid,'">',!isIE&&nodeC…
6422 var uid=treeNode.id;
6423 var parentNode=ElementCache.get(uid);
6557 }var uid=targ.attributes[cacheID];
6558 if(!uid){return
6559 }var el=ElementCache.get(uid.value);
6593 },appendSelector:function(object,html){var uid=ElementCache(object);
6594 var uidString=uid?[cacheID,'="',uid,'"'].join(""):"";
[all …]
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md618 * #566: Migration process had 2 problems related to adding the `uid` field
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php170 * @param string $uid
173 function getCalendarObjectByUID($principalUri, $uid) { argument
206 'value' => $uid,
H A DBackendInterface.php265 * @param string $uid
268 function getCalendarObjectByUID($principalUri, $uid); argument
H A DPDO.php647 $uid = null;
651 $uid = (string)$component->UID;
706 'uid' => $uid,
881 * @param string $uid
884 function getCalendarObjectByUID($principalUri, $uid) { argument
901 $stmt->execute([$principalUri, $uid]);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DCalendarHome.php369 * @param string $uid
372 function getCalendarObjectByUID($uid) { argument
374 return $this->caldavBackend->getCalendarObjectByUID($this->principalInfo['uri'], $uid);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php513 $uid = $iTipMessage->uid;
524 $result = $home->getCalendarObjectByUID($uid);
/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php322 $uid = (string) $child->UID;
323 if (!$uid) {
326 if (isset($recurringEvents[$uid])) {
327 $recurringEvents[$uid][] = clone $child;
450 $uid = (string) $child->UID;
452 if (isset($uidList[$uid])) {
453 ++$uidList[$uid]['count'];
461 $uidList[$uid]['hasMaster'] += $isMaster;
463 $uidList[$uid] = [
519 public function getByUID($uid) argument
[all …]
H A DVCard.php252 $uid = $this->select('UID');
253 if (0 === count($uid)) {
/plugin/webdav/vendor/sabre/vobject/lib/ITip/
H A DBroker.php399 $recurrenceIterator = new EventIterator($existingObject, $itipMessage->uid);
500 $message->uid = $eventInfo['uid'];
524 'UID' => $message->uid,
697 $message->uid = $eventInfo['uid'];
722 'UID' => $message->uid,
813 $uid = null;
834 if (is_null($uid)) {
835 $uid = $vevent->UID->getValue();
837 if ($uid !== $vevent->UID->getValue()) {
H A DMessage.php24 public $uid; variable in Sabre\\VObject\\ITip\\Message
/plugin/webdav/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php92 * @param string|null $uid
96 public function __construct($input, $uid = null, DateTimeZone $timeZone = null) argument
110 $uid = (string) $uid;
111 if (!$uid) {
117 $events = $input->getByUID($uid);
139 … throw new InvalidArgumentException('This VCALENDAR did not have an event with UID: '.$uid);
/plugin/webdav/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php69 $uid = (string) $component->UID;
72 if (!array_key_exists($uid, $this->objects)) {
73 $this->objects[$uid] = new VCalendar();
76 $this->objects[$uid]->add(clone $component);
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng428 property-uid &
472 property-uid &
517 property-uid &
552 property-uid &
1056 property-uid = element uid {
H A Dxcard.rng325 property-uid = element uid { value-uri }
379 | property-tz | property-uid | property-url
/plugin/webdavclient/db/
H A Dupdate0001.sql29 uid text field
/plugin/webdavclient/
H A Dhelper.php97 * @param string $uid The event's UID as stored internally
108 $entry = $this->getCalendarEntryByUid($uid);
126 * @param string $uid The event's UID as stored internally
131 public function deleteCalendarEntry($connectionId, $uid, $dwuser = null) argument
137 $entry = $this->getCalendarEntryByUid($uid);
154 * @param string $uid The event's UID
158 public function getCalendarEntryByUid($uid) argument
164 $res = $sqlite->query($query, $uid);
1651 $uid = null;
1657 $uid = (string)$component->UID;
[all …]

123456789