Home
last modified time | relevance | path

Searched refs:id (Results 26 – 50 of 2758) sorted by relevance

12345678910>>...111

/plugin/popupviewer/syntax/
H A Dviewer.php46 list($id, $param) = explode('?', $id, 2); // find ID + Params
58 $id = trim($id);
60 if ( !empty($id) ) {
61 $origID = $id;
64 $id = $origID;
80 $renderer->internalmedia($id,$title);
94 $p['alt'] = $id;
116 $id = ml($id);
123 if ($conf['useheading'] && $id ) {
136 'id' => $id
[all …]
/plugin/approve/
H A Dhelper.php24 $id = $page['page'];
26 $in_hidden_namespace = $this->in_hidden_namespace($sqlite, $id, $no_apr_namespaces_conf);
30 $sqlite->query('UPDATE page SET hidden=? WHERE page=?', $new_hidden, $id);
40 * @param $id
44 public function use_approve_here(helper_plugin_sqlite $sqlite, $id, &$approver=null) { argument
49 $res = $sqlite->query('SELECT page, approver FROM page WHERE page=? AND hidden=0', $id);
60 * @param $id
63 public function find_last_approved(helper_plugin_sqlite $sqlite, $id) { argument
66 ORDER BY rev DESC LIMIT 1', $id);
91 * @param $id
95 in_hidden_namespace(helper_plugin_sqlite $sqlite, $id, $no_apr_namespaces = null) global() argument
139 isPageAssigned(helper_plugin_sqlite $sqlite, $id, & $pageApprover = null, $weighted_assignments = null) global() argument
221 client_can_approve($id, $pageApprover) global() argument
243 client_can_mark_ready_for_approval($id) global() argument
262 client_can_see_drafts($id, $pageApprover) global() argument
[all...]
/plugin/runcommand/
H A Dscript.js18 jQuery('DIV#rcResult'+id).wrapInner('<IMG SRC="'+url+'wait.gif" width="200px" height="75px">');
21 jQuery('FORM#rcform'+id+' hidden, FORM#rcform'+id+' input, FORM#rcform'+id+' select').each(
23 if (this.type != 'button') argmap[this.id]=this.value;
29 function rcDoClear(id) { argument
30 jQuery('DIV#rcResult'+id).empty();
31 jQuery('DIV#rcResult'+id).append('&nbsp;');
34 function rcDoLoad(id) { argument
44 argmap['rcObjectId']=id;
45 jQuery('FORM#rcform'+id+' hidden, FORM#rcform'+id+' input, FORM#rcform'+id+' select').each(
47 if (this.type != 'button') argmap[this.id]=this.value;
[all …]
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dcheck_acl.php202 function getNS($id){ argument
238 $id = utf8_strtolower($id);
249 if($dwfck_conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id);
250 if($dwfck_conf['deaccent'] || $ascii) $id = utf8_deaccent($id,-1);
253 $id = utf8_stripspecials($id,$sepchar,'\*');
255 if($ascii) $id = utf8_strip($id);
258 $id = preg_replace($sepcharpat,$sepchar,$id);
259 $id = preg_replace('#:+#',':',$id);
260 $id = ($media ? trim($id,':.-') : trim($id,':._-'));
261 $id = preg_replace('#:[:\._\-]+#',':',$id);
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlMultiHandler.php93 $id = (int) $result[0];
98 function () use ($id) {
99 return $this->cancel($id);
124 // See: https://bugs.php.net/bug.php?id=61141
149 $id = (int) $entry['handle'];
150 $this->handles[$id] = $entry;
155 $this->delays[$id] = microtime(true) + ($entry['request']['client']['delay'] / 1000);
170 private function removeProcessed($id) argument
172 if (isset($this->handles[$id])) {
175 $this->handles[$id]['handl
189 cancel($id) global() argument
[all...]
/plugin/sphinxsearch-was/
H A Dfunctions.php247 function getCategories($id) argument
255 $ns = explode(":", $id);
272 function getPagename($id) argument
277 return $id;
280 $ns = explode(":", $id);
349 $ns = getNS($id);
353 $name = $id;
355 $href = wl($id);
374 $ns = getNS($id);
378 $name = $id;
[all …]
/plugin/sphinxsearch/
H A Dfunctions.php253 function getCategories($id) argument
261 $ns = explode(":", $id);
278 function getPagename($id) argument
283 return $id;
354 foreach($data as $id){
356 $ns = getNS($id);
360 $name = $id;
362 $href = wl($id);
382 $ns = getNS($id);
386 $name = $id;
[all …]
/plugin/translate/
H A Dhelper.php59 if (is_null($id)) $id = $ID;
60 $meta = $id!==$ID ? p_get_metadata($id) : $INFO['meta'];
119 if (is_null($id)) $id = $ID;
178 if (is_null($id)) $id = $ID;
179 return $this->getOriginal($id) != $id;
185 if (is_null($id)) $id = $ID;
186 $meta = $id!==$ID ? p_get_metadata($id) : $INFO['meta'];
197 if (is_null($id)) $id = $ID;
198 $id = $this->getOriginal($id);
201 $meta = $id!==$ID ? p_get_metadata($id) : $INFO['meta'];
[all …]
/plugin/move/action/
H A Drewrite.php44 $id = $event->data[2];
45 if($event->data[1]) $id = $event->data[1] . ':' . $id;
47 if(!$id) {
52 $id = pathID($path);
56 if(isset($stack[$id])) return;
66 || checklock($id) !== false || @file_exists(wikiLockFN($id))
72 $stack[$id] = true;
74 unset($stack[$id]);
88 $id = $cache->page;
89 if(!$id) {
[all …]
/plugin/booking/
H A Daction.php57 $id = getID();
58 $perm = auth_quickaclcheck($id);
77 $this->outputHTML($id);
83 * @param string $id
102 * @param string $id
123 * @param string $id
125 protected function exportCSV($id) argument
149 * @param string $id
151 protected function outputHTML($id) argument
161 $this->listBookings($id);
[all …]
/plugin/autotooltip/
H A Dhelper.php44 'id' => 'string',
119 * @param string $id - A page id.
126 public function forWikilink($id, $content = null, $preTitle = '', $classes = '', $textClasses = '') {
128 $id = resolve_id(getNS($ID), $id, false);
130 $meta = self::read_meta_fast($id);
133 $link = $this->localRenderer->internallink($id, $content ?: $title, null, true);
135 if (page_exists(preg_replace('/\#.*$/', '', $id))) {
146 * Is this id exclude
125 forWikilink($id, $content = null, $preTitle = '', $classes = '', $textClasses = '') global() argument
150 isExcluded($id) global() argument
177 read_meta_fast($id) global() argument
[all...]
/plugin/davcard/
H A Dhelper.php51 * @param int $id The address book ID
60 if(strpos($id, 'webdav://') === 0)
78 $acl = auth_quickaclcheck($id);
208 if(strpos($id, 'webdav://') === 0)
280 if(is_null($id))
283 $id = $ID;
319 if(is_null($id))
322 $id = $ID;
352 if(is_null($id))
355 $id = $ID;
[all …]
/plugin/spatialhelper/helper/
H A Dindex.php85 $this->updateSpatialIndex($page ['id']);
92 $this->indexImage($medium['id']);
101 * @param string $id
105 final public function updateSpatialIndex(string $id): bool
107 $geotags = p_get_metadata($id, 'geo');
114 Logger::debug("Geo metadata found for page $id", $geotags);
118 return $this->addToIndex($geohash, $id);
122 * Store the hash/id entry in the index.
125 * @param string $id
126 * page or media id
97 updateSpatialIndex(string $id) global() argument
120 addToIndex(string $geohash, string $id) global() argument
170 findHashesForId(string $id, array $index) global() argument
225 getCoordsFromExif(string $id) global() argument
285 deleteFromIndex(string $id) global() argument
[all...]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dcollection.js226 var collection = new Backbone.Collection([{id: 1}, {id: 2}, {id: 1}, {id: 2}, {id: 3}]);
333 collection.add([{id: 1}, {id: 2}, {id: 3}]);
891 {id: 1}, {id: 2}, {id: 3}, {id: 4}, {id: 5}, {id: 6}
913 collection.add([{id: 1}, {id: 2}, {id: 3}, {id: 4}, {id: 5}, {id: 6}], {validate: true});
1341 collection.set([{id: 3}, {id: 2}, {id: 1}]);
1446 }))([{id: 1}, {id: 2}, {id: 3}]);
1462 }))([{id: 1}, {id: 2}, {id: 3}]);
1789 collection.set([{id: 3}, {id: 2}, {id: 1}]);
1801 collection.set([{id: 1}, {id: 2}, {id: 3}, {id: 0}]);
1813 collection.set([{id: 1}, {id: 2}, {id: 3}]);
[all …]
/plugin/authfacebook/lib/
H A DFacebookApp.php34 protected $id; variable in Facebook\\FacebookApp
42 * @param string $id
47 public function __construct($id, $secret) argument
49 if (!is_string($id)
51 && !is_int($id)) {
55 $this->id = (string) $id;
66 return $this->id;
86 return new AccessToken($this->id . '|' . $this->secret);
96 return implode('|', [$this->id, $this->secret]);
106 list($id, $secret) = explode('|', $serialized);
[all …]
/plugin/authgoogle/google/contrib/
H A DGoogle_FreebaseService.php134 public $id; variable in Google_TopicLookup
139 $this->id = $id;
142 return $this->id;
220 public $id; variable in Google_TopicStatslinkcountValues
231 $this->id = $id;
247 public $id; variable in Google_TopicStatslinkcountValuesValues
258 $this->id = $id;
274 public $id; variable in Google_TopicStatslinkcountValuesValuesValues
282 $this->id = $id;
295 public $id; variable in Google_TopicValue
[all …]
/plugin/epub/scripts/
H A Debook.php13 function create($id, $user_title=false) { argument
16 $id = ltrim($id, ':');
17 $id = ":$id";
18 $namespace= getNS($id);
34 $ID = cleanID($id);
36 $wiki_file = wikiFN($id);
39 echo htmlentities($id) . " not found\n";
42 epub_update_progress("reading $id");
107 $id = "../Text/" . str_replace(':','_',$id) ;
133 $id = 'title.html';
[all …]
/plugin/diagramsnet/lib/images/
H A Dgitlab-logo.svg1id="logo_art" data-name="logo art" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 586 559"><defs>…
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DContext.php69 protected function __construct($id) argument
71 $this->_id = $id;
80 * @param string $id ID.
84 public static function getInstance($id) argument
86 if (empty($id)) {
90 if (false === static::contextExists($id)) {
91 static::$_instances[$id] = new static($id);
94 return static::$_instances[$id];
110 * @param string $id ID.
113 public static function contextExists($id) argument
[all …]
/plugin/doi/Resolver/
H A DAbstractResolver.php10 'id' => '',
40 * @param string|int $id
43 abstract public function getFallbackURL($id); argument
48 * @param string $id
51 abstract public function cleanID($id); argument
56 * @param string|int $id
60 abstract public function getData($id); argument
65 * @param string|int $id
68 abstract protected function fetchData($id); argument
75 * @param string|int $id
79 fetchCachedData($id) global() argument
[all...]
/plugin/html2pdf/html2pdf/html2ps/
H A Dps.l3.image.encoder.stream.inc.php14 return $id;
19 return $id;
33 $id = $this->generate_id();
43 $psdata->write("/image-{$id}-init { image-{$id}-data 0 setfileposition } def\n");
71 $image = "image-{$id}-data";
74 return $id;
87 $id = $this->generate_id();
100 …$psdata->write("/image-{$id}-init { image-{$id}-data 0 setfileposition mask-{$id}-data 0 setfilepo…
190 return $id;
202 $psdata->write("/image-{$id}-init { image-{$id}-data 0 setfileposition } def\n");
[all …]
/plugin/snippets/exe/
H A Dupdate.php19 $id = urldecode($_REQUEST['update']); // file to update variable
23 $id = $argv[1]; variable
24 echo $id . "\n";
29 $page = wikiFN($id);
36 if(array_key_exists($id,$snip_data['doc'])) {
37 $snippets = $snip_data['doc'][$id];
39 $helper->updateMetaTime($id,$snip) ;
47 snippets_prune_meta($id,$snippet);
50 function snippets_prune_meta($id,$snip) { argument
55 $file=wikiFN($id);
[all …]
/plugin/preservefilenames/
H A Dscript.js61 function mod_insert(id) { argument
67 .find('a[id="h_' + id + '"]:first, a[name="h_' + id + '"]:first')
75 id = matches[1] + filename;
78 insert_orig(id);
84 function mod_addToList(id, fileName) { argument
86 item.qqFileId = id;
94 nameElement.id = 'mediamanager__upload_item' + id;
114 if (!matched) return id;
118 if (!content_div) return id;
147 /\+\s*id\s*\+/,
[all …]
/plugin/bez/tpl/
H A Dcommcause_box.php2 <a id="k<?php echo $tpl->get('thread_comment')->id ?>"></a>
21 <a href="#k<?php echo $tpl->get('thread_comment')->id ?>">#k<?php echo $tpl->get('thread_comment')->id ?></a>
29 <?php if ($tpl->param('kid') != $tpl->get('thread_comment')->id): ?>
34 href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'commcause_edit', 'kid', $tpl->get('thread_comment')->id) ?>#k_">
37 <?php if ( $tpl->get('thread_comment')->acl_of('id') >= BEZ_PERMISSION_DELETE &&
40 data-kid="<?php echo $tpl->get('thread_comment')->id
[all...]
/plugin/yuriigantt/_test/
H A Dtest_page.txt18 "id": 2,
29 "id": 3,
40 "id": 4,
51 "id": 5,
62 "id": 6,
73 "id": 7,
84 "id": 8,
95 "id": 9,
130 "id": 1,
136 "id": 2,
[all …]

12345678910>>...111