Home
last modified time | relevance | path

Searched refs:cnt (Results 26 – 50 of 94) sorted by relevance

1234

/plugin/data/syntax/
H A Drelated.php74 $cnt = 1;
117 $tables[$col] = 'T' . (++$cnt);
149 $tables[$col] = 'T' . (++$cnt);
H A Dcloud.php91 $cnt = 0;
105 $tables[$col] = 'T' . (++$cnt);
117 $sql = "SELECT data.value AS value, COUNT(data.pid) AS cnt
123 $sql .= ' HAVING cnt >= ' . $data['min'];
125 $sql .= ' ORDER BY cnt DESC';
174 $max = $row['cnt'];
176 $min = $row['cnt'];
177 $tags[$row['value']]['cnt'] = $row['cnt'];
187 $tagLabelText .= '<sub>(' . $tag['cnt']
[all...]
/plugin/mindmap/
H A Dsyntax.php594 $cnt = 0;
597 $cnt++;
598 … $output .= " <edge id=\"$cnt\" source=\"page-$id\" target=\"page-$link\" />\n";
601 $cnt++;
602 … $output .= " <edge id=\"$cnt\" source=\"page-$id\" target=\"media-$link\" />\n";
/plugin/loglog/helper/
H A Dreport.php55 function ($page, $cnt) {
56 return " - $page: $cnt";
H A Dalert.php86 $cnt = $this->logHelper->countMatchingLines($lines, $msgNeedle);
87 if ($cnt < $threshold) {
/plugin/diagramsnet/lib/plugins/
H A DcConf-comments.js205 var cnt = decodeURIComponent(comments[i].body.storage.value);
207 if (cnt.indexOf(REPLY_MARKER) == 0)
209 var end = cnt.indexOf(REPLY_MARKER_END, REPLY_MARKER.length);
210 var parentId = cnt.substring(REPLY_MARKER.length, end);
211 comments[i].body.storage.value = cnt.substring(REPLY_MARKER_END.length + end);
/plugin/aclplusregex/
H A Daction.php194 $cnt = 0;
202 $match = preg_replace("/^$pattern$/m", $check, $entity, 1, $cnt);
203 if ($cnt > 0) {
/plugin/sqlite/
H A Dadmin.php189 $cnt = count($result);
190 msg($cnt . ' affected rows in ' . $this->microtimeToSeconds($time) . ' seconds', 1);
191 if (!$cnt) continue;
/plugin/log/
H A Dsyntax.php60 $cnt = $maxcount;
73 if ($lvl === 1 && --$cnt === 0) {
/plugin/qc/
H A DOutput.php93 $cnt = count($top5);
104 if ($i++ < $cnt) $html .= ', ';
/plugin/datatemplate/syntax/
H A Dlist.php139 $cnt = 0;
144 $cnt++;
146 if($data['limit'] && ($cnt == $data['limit'])) break; // keep an eye on the limit
149 if ($cnt === 0) {
H A Dentry.php186 $cnt = count($val);
189 for ($i=0; $i<$cnt; $i++){
192 if($i < $cnt - 1) {
/plugin/virtualkeyboard/vk/extensions/
H A Darrayextensions.js224 ,cnt = -1;
226 cnt++;
227 tmp[cnt] = mn;
/plugin/logstats/
H A Daction.php164 $cnt = preg_match('/\?id=((\w+\:*)+)/i', $_SERVER['HTTP_REFERER'], $match);
165 if($cnt == 1) {
/plugin/directions/
H A Daction.php258 $cnt = preg_match('/\?id=((\w+\:*)+)/i',$_SERVER['HTTP_REFERER'], $match);
259 if($cnt == 1)
/plugin/dbquery/
H A Dhelper.php95 $cnt = 0;
98 $id = 'group' . $cnt++;
/plugin/diagramsnet/lib/js/onedrive/
H A DmxODPicker.js304 var cnt = req.responseText;
308 cnt = 'data:image/png;base64,' + Editor.base64Encode(cnt);
309 cnt = Editor.extractGraphModelFromPng(cnt);
312 var doc = mxUtils.parseXml(cnt);
/plugin/namespacesearch/
H A Dsyntax.php125 foreach($data as $id => $cnt){
129 … $renderer->doc .= ': <span class="search_cnt">'.$cnt.' '.$lang['hits'].'</span><br />';
/plugin/podcast/
H A Dhelper.php17 $cnt = count($rows);
19 if( $cnt ) {
/plugin/s5reloaded/ui/thesis/
H A Dslides.js1452 cnt = tmp.split("_");
1468 cnt = tmp.split("_");
1484 cnt = tmp.split("_");
1531 cnt = tmp.split(",");
1532 if(cnt[0].match(/^[1-9][0-9]+/)) w = parseInt(cnt[0]);
1533 if(cnt[1].match(/^[1-9][0-9]+/)) h = parseInt(cnt[1]);
1548 cnt = tmp.split(",");
1549 if(cnt[0].match(/^[1-9][0-9]+/)) w = parseInt(cnt[0]);
1550 if(cnt[1].match(/^[1-9][0-9]+/)) h = parseInt(cnt[1]);
1566 if(cnt[0].match(/^[1-9][0-9]+/)) w = parseInt(cnt[0]);
[all …]
/plugin/memcache/classes/
H A Dmemcache_fakecache.class.php79 …&& ($cnt = file_get_contents(static::$cache_dir.static::normalize_key($key))) !== false // file c…
80 && ($ucnt = @gzuncompress($cnt)) !== false // file is uncompressable
/plugin/authfacebook/
H A Dauth.php154 $ext = ''; $cnt=0;
156 $cnt++;
157 $ext = '-'.$cnt;
/plugin/struct/action/
H A Dmigration.php107 $cnt = 0;
108 $sql = preg_replace('/(PRIMARY KEY ?\([^\)]+?)(\))/', ' rid INTEGER, $1, rid $2', $sql, -1, $cnt);
110 if (!$cnt) {
/plugin/data-au/syntax/
H A Dcloud.php83 $cnt = 0;
96 $tables[$col] = 'T' . (++$cnt);
/plugin/statdisplay/helper/
H A Dlog.php410 $cnt = 0;
418 $cnt++;
421 if (!$cnt) return 0;
422 return $all / $cnt;

1234