Home
last modified time | relevance | path

Searched refs:file (Results 3126 – 3150 of 3491) sorted by path

1...<<121122123124125126127128129130>>...140

/plugin/tag/
H A DCOPYING294 to attach them to the start of each source file to most effectively
295 convey the exclusion of warranty; and each file should have at least
/plugin/tagadd/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
/plugin/tagentry/
H A Daction.php86 function _tagentry_search_tagpages( &$data, $base, $file, $type, $lvl, $opts ) { argument
92 } elseif ( $type == 'f' && !preg_match( '#\.txt$#', $file ) ) {
95 $id = pathID( $file );
/plugin/tagfilter/
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A Dhelper.php199 * Returns entire index file as array
214 return file($fn, FILE_IGNORE_NEW_LINES);
/plugin/tagfilter/helper/
H A Dsyntax.php326 * @param string $file current file or directory relative to $base
327 * @param string $type Type either 'd' for directory or 'f' for file
335 public function search_all_pages(&$data, $base, $file, $type, $lvl, $opts)
345 if (substr($file, -4) == '.txt') {
347 if (strpos($file, str_replace(':', '/', $excludeNs)) === 0) {
353 $data[] = $conf['datadir'] . '/' . $file;
325 search_all_pages(& $data, $base, $file, $type, $lvl, $opts) global() argument
/plugin/tagfilter/script/select2/
H A DREADME.md44 language JS file (`select2_locale_it.js`, `select2_locale_nl.js`, etc.).
76 You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at:
/plugin/tagging/
H A DREADME32 See the COPYING file in your DokuWiki folder for details
/plugin/tagsections/
H A DREADME.md27 See the COPYING file in your DokuWiki folder for details
/plugin/talkpage/
H A DREADME27 See the COPYING file in your DokuWiki folder for details
/plugin/task/
H A DCOPYING289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A Dhelper.php158 $file = metaFN($id, '.task');
159 if (!@file_exists($file)) {
168 $data = unserialize(io_readFile($file, false));
171 $data['file'] = $file;
181 $file = ($data['file'] ? $data['file'] : metaFN($id, '.task'));
189 if (!@file_exists($file) || !$data['date']['created']) {
198 $current = unserialize(io_readFile($file, false));
211 $ok = io_saveFile($file, serialize($data));
/plugin/tcycle/
H A DLICENSE630 to attach them to the start of each source file to most effectively
631 state the exclusion of warranty; and each file should have at least
H A Dsyntax.php132 foreach($files as $file) {
133 if (!is_file($file)) { break; }
134 $detail = str_replace($conf['mediadir'], '/_detail', $file);
135 $media = str_replace($conf['mediadir'], '/_media', $file);
136 $meta = new JpegMeta($file);
/plugin/telleveryone/
H A D.travis.yml1 # Config file for travis-ci.org
H A DLICENSE289 to attach them to the start of each source file to most effectively
290 convey the exclusion of warranty; and each file should have at least
H A DREADME27 See the LICENSING file for details
/plugin/telleveryone/_test/
H A Dgeneral.test.php16 $file = __DIR__ . '/../plugin.info.txt';
17 $this->assertFileExists($file);
19 $info = confToHash($file);
/plugin/telleveryone/helper/
H A Ddb.php91 $file = $this->sqlite->getAdapter()->getDbFile();
92 if (!$file) {
95 unlink($file);
96 clearstatcache(true, $file);
/plugin/templateconfhelper/
H A DREADME30 * $_GET[template /^[\w-]*$/ - template dir to search for the file
58 <file php main.php>
61 </file>
72 * getConfigPath( $type, $file ) - find file in cascade_config[$type]
75 …* tpl_include( $file, $t=false ) - use getConfigPath to include file from cascade_config['template…
/plugin/templateconfhelper/action/
H A Dfetchaction.php48 if( !$file = getConfigPath( 'template_dir', $tpl.'/images/'.$MEDIA ))
49 $file = getConfigPath( 'template_dir', $conf['base_tpl'].'/images/'.$MEDIA );
52 if(!@file_exists( $file )) {
56 $orig = $file;
61 $file = media_crop_image($file,$EXT,$WIDTH,$HEIGHT);
63 $file = media_resize_image($file,$EXT,$WIDTH,$HEIGHT);
70 $data['file'] = $file;
H A Dtemplateaction.php152 $file = DOKU_TPLINC.'../'.$tpl.'/conf/default.php';
154 if (!@file_exists($file)) return false;
156 include($file);
/plugin/templateconfhelper/exe/
H A Dcss.php67 foreach($styleini['stylesheets'] as $file => $mode) {
68 $tplstyles[$mode][_css_getpath( $tpl, $file )] = $tpldir;
140 foreach($files[$mediatype] as $file => $location){
141 $css_content .= css_loadfile($file, $location);
205 function _css_getpath( $t, $file ) { argument
209 if( !$t || !$include = getConfigPath( 'template_dir', $t.'/'.$file )) {
212 $include = getConfigPath( 'template_dir', $conf['template'].'/'.$file );
214 $include = getConfigPath( 'template_dir', $conf['default_tpl'].'/'.$file );
217 $include = getConfigPath( 'template_dir', $conf['base_tpl'].'/'.$file );
219 echo "/* _css_getpath: include($file): $include */\n";
/plugin/templateconfhelper/inc/
H A Dconfutils.php16 * @param string $file the name of the wanted file
19 function getConfigPath($type, $file) { argument
28 if( file_exists( $path.$file ) && !in_array( $path.$file, get_included_files( ))) {
30 return $path.$file;
H A Dtemplate.php13 function tpl_include( $file, $t=false, $allowphp=true ) { argument
19 …if( !$t || ( !$include = getConfigPath( 'template_dir', $t.'/'.$file )) || in_array( $include, $in…
21 $include = getConfigPath( 'template_dir', $conf['default_tpl'].'/'.$file );
25 $include = getConfigPath( 'template_dir', $conf['base_tpl'].'/'.$file );

1...<<121122123124125126127128129130>>...140