Home
last modified time | relevance | path

Searched refs:info (Results 176 – 200 of 1857) sorted by relevance

12345678910>>...75

/plugin/farm/
H A Dinfos.animal.class.php304 $info = array();
310 if($nice) $info['average'] = $this->animal->manager->nicesize($info['average']);
313 if($nice) $info['total'] = $this->animal->manager->nicesize($info['total']);
320 $info['biggest'] = array(
354 $info['oldest'] = array(
377 $info['latest'] = array(
385 return $info;
398 $info = array();
404 if($nice) $info['average'] = $this->animal->manager->nicesize($info['average']);
407 if($nice) $info['total'] = $this->animal->manager->nicesize($info['total']);
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DFormWriter.php31 foreach ($this->mpdf->formobjects as $file => $info) {
40 $this->writer->write('/BBox [' . $info['x'] . ' ' . $info['y'] . ' ' . ($info['w'] + $info['x']) . ' ' . ($info['h'] + $info['y']) . ']');
46 $data = $this->mpdf->compress ? gzcompress($info['data']) : $info['data'];
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.archive.gzip.php41 $info = &$this->getid3->info;
43 $info['fileformat'] = 'gzip';
51 if ($info['php_memory_limit'] && ($info['filesize'] > $info['php_memory_limit'])) {
52 …('File is too large ('.number_format($info['filesize']).' bytes) to read into memory (limit: '.num…
56 $buffer = $this->fread($info['filesize']);
83 $info['gzip']['files'] = array();
91 $thisInfo = &$info['gzip']['member_header'][++$idx];
157 $thisInfo['filename'] = preg_replace('#\\.gz$#i', '', $info['filename']);
201 …$info['gzip']['files'] = getid3_lib::array_merge_clobber($info['gzip']['files'], getid3_lib::Creat…
241 $info['gzip']['member_header'][$idx]['tar'] = $getid3_temp->info['tar'];
H A Dmodule.archive.szip.php27 $info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
32 …$this->error('Expecting "53 5A 0A 04" at offset '.$info['avdataoffset'].', found "'.getid3_lib::Pr…
35 $info['fileformat'] = 'szip';
36 $info['szip']['major_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 4, 1));
37 $info['szip']['minor_version'] = getid3_lib::BigEndian2Int(substr($SZIPHeader, 5, 1));
89 $info['szip']['BH'][] = $BHdataArray;
H A Dmodule.audio.midi.php35 $info = &$this->getid3->info;
38 $info['midi']['raw'] = array();
39 $thisfile_midi = &$info['midi'];
42 $info['fileformat'] = 'midi';
43 $info['audio']['dataformat'] = 'midi';
45 $this->fseek($info['avdataoffset']);
51 unset($info['fileformat']);
91 unset($info['fileformat']);
97 $info['playtime_seconds'] = 0;
333 if (!empty($info['playtime_seconds'])) {
[all …]
H A Dmodule.misc.msoffice.php27 $info = &$this->getid3->info;
29 $this->fseek($info['avdataoffset']);
33 …$this->error('Expecting "'.getid3_lib::PrintHexBytes($magic).'" at '.$info['avdataoffset'].', foun…
36 $info['fileformat'] = 'msoffice';
/plugin/navi/
H A Dsyntax.php69 $R->info['cache'] = false; // no cache please
226 foreach ((array)$navItems as $pid => $info) {
228 $countparents = count($info['parents']);
238 foreach ((array)$navItems as $pid => $info) {
255 if ($info['lvl'] == $lvl) {
261 } elseif ($lvl > $info['lvl']) {
262 for (; $lvl > $info['lvl']; --$lvl) {
268 } elseif ($lvl < $info['lvl']) {
270 for (; $lvl < $info['lvl']; ++$lvl) {
279 $R->internallink(':' . $info['page'], $info['title']);
[all …]
/plugin/mantis/lib/
H A Dnusoapmime.php93 $info['data'] = $data;
94 $info['filename'] = $filename;
95 $info['contenttype'] = $contenttype;
96 $info['cid'] = $cid;
98 $this->requestAttachments[] = $info;
246 $info['data'] = $part->body;
332 $info['data'] = $data;
333 $info['filename'] = $filename;
334 $info['contenttype'] = $contenttype;
335 $info['cid'] = $cid;
[all …]
/plugin/authldaplocal/
H A Dauth.php137 if(empty($info['dn'])) {
140 $dn = $info['dn'];
201 $info = array();
202 $info['user'] = $user;
235 $info['grps'] = array();
298 return $info;
359 if(empty($info['dn'])) {
364 $name = $info['name'];
365 $mail = $info['mail'];
370 $grps = $info['grps'];
[all …]
/plugin/log404/_test/
H A Dgeneral.test.php19 $info = confToHash($file);
21 $this->assertArrayHasKey('base', $info);
22 $this->assertArrayHasKey('author', $info);
23 $this->assertArrayHasKey('email', $info);
24 $this->assertArrayHasKey('date', $info);
25 $this->assertArrayHasKey('name', $info);
26 $this->assertArrayHasKey('desc', $info);
27 $this->assertArrayHasKey('url', $info);
29 $this->assertEquals('log404', $info['base']);
30 $this->assertRegExp('/^https?:\/\//', $info['url']);
[all …]
/plugin/authwordpress/
H A Dauth.php160 foreach ($this->users as $user => $info) {
161 if ($this->applyFilter($user, $info)) {
163 $list[$user] = $info;
192 foreach ($this->users as $user => $info) {
193 $count += (int)$this->applyFilter($user, $info);
201 * Returns info about the given user.
271 * Convert a Wordpress DB User row to DokuWiki user info array
295 $info = array(
303 $this->users[$login] = $info;
304 return $info;
352 applyFilter(string $user, array $info) global() argument
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUtils.php34 $asciiHost = self::idnToAsci($uri->getHost(), $options, $info);
36 $errorBitSet = isset($info['errors']) ? $info['errors'] : 0;
69 * @param array $info
73 private static function idnToAsci($domain, $options, &$info = []) argument
80 return \idn_to_ascii($domain, $options, INTL_IDNA_VARIANT_UTS46, $info);
87 return Idn::idn_to_ascii($domain, $options, Idn::INTL_IDNA_VARIANT_UTS46, $info);
/plugin/projects/syntax/
H A Drecipe.php17 $info = parent::getInfo();
18 $info['date'] = '2010-12-16';
19 $info['name'] = 'Project-file recipe Plugin';
20 $info['desc'] = 'display the recipe tag in a project file';
21 return $info;
H A Dcontent.php17 $info = parent::getInfo();
18 $info['date'] = '2010-12-16';
19 $info['name'] = 'Project-file content Plugin';
20 $info['desc'] = 'display the content tag in a project file';
21 return $info;
/plugin/webcomponent/_test/
H A Dheading.test.php32 $info = array();
36 $dokuXhtml = p_render('xhtml', $instructionsDoku, $info);
37 $markXhtml = p_render('xhtml', $instructionsMark, $info);
49 $info = array();
53 $dokuXhtml = p_render('xhtml', $instructionsDoku, $info);
54 $markXhtml = p_render('xhtml', $instructionsMark, $info);
/plugin/webdav/core/DAV/Collection/ODT/
H A DFile.php28 if (auth_quickaclcheck($this->info['id']) < AUTH_READ) {
33 $filename = wikiFN($this->info['id']);
34 $meta = p_get_metadata($this->info['id']);
37 $info = [];
38 $xmlcontent = p_render('odt_book', p_cached_instructions($filename, false, $page), $info);
49 return basename($this->info['file'], '.txt') . '.odt';
/plugin/clock/
H A Dsyntax.php96 $info= '[[doku>plugin:clock|Clock Plugin]]';
98 $info= "[[$link|Info]]";
100 $info= p_render('xhtml', p_get_instructions($info), $info);
101 $info= trim(substr($info, 4, -5)); // remove <p>, </p>
102 $p.= $info;
/plugin/mediarename/
H A Daction.php62 $info = array();
63 $info['id'] = pathID($file,true);
66 $auth = auth_quickaclcheck($info['id']);
73 if($info['id'] != cleanID($info['id'])){
74 $id = cleanID($ns.':'.$info['id'],false,true);
98 … msg(hsc($info['id']).' was not a valid file name for DokuWiki - moved to new name: '.$tmp);
/plugin/talkpage/
H A DMenuItem.php21 $info = $syntax->getLink();
22 $this->id = $info['goto'];
23 $this->nofollow = isset($info['attr']['rel']);
24 $this->label = $info['text'];
25 $this->svg = __DIR__ . '/svg/' . $info['type'] . '.svg';
/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.zip.php22 $getid3->info['filesize'] = filesize($filename);
28 if (($getid3->info['fileformat'] == 'zip') && !empty($getid3->info['zip']['files'])) {
29 if (!empty($getid3->info['zip']['central_directory'])) {
30 $ZipDirectoryToWalk = $getid3->info['zip']['central_directory'];
31 } elseif (!empty($getid3->info['zip']['entries'])) {
32 $ZipDirectoryToWalk = $getid3->info['zip']['entries'];
/plugin/ifauthex/_test/
H A Dgeneral.test.php232 $info = array();
310 $info = confToHash($file);
312 $this->assertArrayHasKey('base', $info);
313 $this->assertArrayHasKey('author', $info);
314 $this->assertArrayHasKey('email', $info);
315 $this->assertArrayHasKey('date', $info);
316 $this->assertArrayHasKey('name', $info);
317 $this->assertArrayHasKey('desc', $info);
318 $this->assertArrayHasKey('url', $info);
320 $this->assertEquals('ifauthex', $info['base']);
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DMeter.php232 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);
233 if (!$info) {
234 $info = $this->imageProcessor->getImage($this->mpdf->noImageFile);
235 if ($info) {
237 $w = ($info['w'] * (25.4 / $this->mpdf->img_dpi));
238 $h = ($info['h'] * (25.4 / $this->mpdf->img_dpi));
241 if (!$info) {
250 $w = $this->mpdf->FontSize / (10 / Mpdf::SCALE) * abs($info['w']) / Mpdf::SCALE;
251 $h = $this->mpdf->FontSize / (10 / Mpdf::SCALE) * abs($info['h']) / Mpdf::SCALE;
256 $w = $info['
[all...]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
H A DMethod.php37 var $info; variable in Method
45 $this->info = array();
57 if(array_key_exists($name, $this->info))
58 return $this->info[$name];
70 $this->info[$name] = $value;
/plugin/usersubscriptions/
H A Dsyntax.php77 $renderer->info['cache'] = false;
146 foreach($elements as $id => $info) {
147 $info['inheritedsubscription'] = $info['subscribedfromparent'] && !$info['selfsubscribed'];
149 $info['deleteoption'] = $info['selfsubscribed'] && $deletelink;
150 …$info['display'] = $info['usersubscribed'] && ($displayinheritedsubscriptions || (!$displayinherit…
152 $usersubscriptions[$id] = $info;
/plugin/preservefilenames/
H A Daction_adorabelle.php68 $info = '';
70 $info .= (int) $item['meta']->getField('File.Width');
71 $info .= '&#215;';
72 $info .= (int) $item['meta']->getField('File.Height');
73 $info .= ' ';
75 $info .= '<i>'.dformat($item['mtime']).'</i>';
76 $info .= ' ';
77 $info .= filesize_h($item['size']);
86 echo '<span class="info">('.$info.')</span>'.NL;

12345678910>>...75