Home
last modified time | relevance | path

Searched refs:dir (Results 101 – 125 of 598) sorted by relevance

12345678910>>...24

/plugin/userpagecreate/
H A Daction.php178 $dir = $conf['datadir'] . '/' . utf8_encodeFN($ns);
179 if (is_dir($dir)) {
180 io_rmdir($dir, true);
184 $dir = $conf['olddir'] . '/' . utf8_encodeFN($ns);
185 if (is_dir($dir)) {
186 io_rmdir($dir, true);
/plugin/odt/
H A Dstyle.css38 [dir=rtl] #dokuwiki__pagetools ul li a.export_odt:hover, selector
39 [dir=rtl] #dokuwiki__pagetools ul li a.export_odt:active, selector
40 [dir=rtl] #dokuwiki__pagetools ul li a.export_odt:focus, selector
41 [dir=rtl] #dokuwiki__pagetools ul li a.export_odt_pdf:hover, selector
42 [dir=rtl] #dokuwiki__pagetools ul li a.export_odt_pdf:active, selector
43 [dir=rtl] #dokuwiki__pagetools ul li a.export_odt_pdf:focus { selector
/plugin/dev/
H A DSkeletor.php28 protected $dir; variable in dokuwiki\\plugin\\dev\\Skeletor
55 $this->dir = 'lib/plugins/' . $base;
58 $this->dir = 'lib/tpl/' . $base;
65 * @param string $dir
68 static public function fromDir($dir) argument
70 if (file_exists($dir . '/plugin.info.txt')) {
72 } elseif (file_exists($dir . '/template.info.txt')) {
78 $data = file($dir . '/' . $type . '.info.txt', FILE_IGNORE_NEW_LINES);
267 * @param string $skel Skeleton relative to the skel dir
/plugin/davcard/vendor/composer/
H A DClassLoader.php353 foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354 … if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
363 foreach ($this->fallbackDirsPsr4 as $dir) {
364 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
382 foreach ($dirs as $dir) {
383 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
392 foreach ($this->fallbackDirsPsr0 as $dir) {
393 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/webdavclient/vendor/composer/
H A DClassLoader.php353 foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354 … if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
363 foreach ($this->fallbackDirsPsr4 as $dir) {
364 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
382 foreach ($dirs as $dir) {
383 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
392 foreach ($this->fallbackDirsPsr0 as $dir) {
393 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/davcal/vendor/composer/
H A DClassLoader.php353 foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354 … if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
363 foreach ($this->fallbackDirsPsr4 as $dir) {
364 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
382 foreach ($dirs as $dir) {
383 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
392 foreach ($this->fallbackDirsPsr0 as $dir) {
393 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DCopyTest.php23 $dir = new FS\Directory(SABRE_TEMPDIR);
24 $server = new Server($dir);
26 $dir->createDirectory('foo');
/plugin/webdav/core/DAV/Collection/Media/
H A DDirectory.php50 $dir = dirname(mediaFN($this->info['id'] . ':fake'));
52 if (@!file_exists($dir)) {
56 $files = glob("$dir/*");
62 if (!rmdir($dir)) {
/plugin/loadskin/
H A Dstyle.css7 [dir=rtl] .dokuwiki .plugin_loadskin { selector
16 [dir=rtl] .dokuwiki .plugin_loadskin form label { selector
30 [dir=rtl] .dokuwiki div.toc, selector
31 [dir=rtl] .dokuwiki #dw__toc { selector
/plugin/include/_test/
H A Dnamespace_includes.test.php46 * Helper function to read dir content
48 protected function getDirContent ($dir) { argument
49 if (is_dir($dir)) {
51 if ($handle = opendir($dir)) {
129 $dir = $this->getDirContent(dirname(__FILE__).'/../../../../_test/data/pages/wiki');
130 $this->assertTrue($dir !== null);
131 foreach ($dir as $page) {
/plugin/siteexport/_test/
H A Dplugin_siteexport_javascript.test.php13 $dir = dirname(__FILE__) . '/phantomjs/';
14 $compressed = $dir . 'compressed.source.js';
15 $uncompressed = $dir . 'uncompressed.source.js';
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Cache/
H A DFilesystemTest.php41 $dir = \dirname($key);
42 @mkdir($dir, 0777, true);
43 $this->assertTrue(is_dir($dir));
148 $dir = \dirname($key);
149 @mkdir($dir, 0777, true);
150 $this->assertTrue(is_dir($dir));
/plugin/farmsync/meta/
H A DTemplateUpdates.php61 * @param string $dir Current directory beyond $base
67 public function getTemplates($base, $dir = '', $lvl = 0, $opts = array()) { argument
78 $dh = @opendir($base . '/' . $dir);
84 if (is_dir($base . '/' . $dir . '/' . $file)) {
85 $dirs[] = $dir . '/' . $file;
89 $files[] = $dir . '/' . $file;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DStreamHandler.php209 $dir = $this->getDirFromStream($url);
210 if (null !== $dir && !is_dir($dir)) {
213 $status = mkdir($dir, 0777, true);
215 if (false === $status && !is_dir($dir)) {
216 …'There is no existing directory at "%s" and it could not be created: '.$this->errorMessage, $dir));
/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php425 * @param $dir
429 private function delTree($dir) argument
431 $contents = scandir($dir);
437 (is_dir("$dir/$file")) ? delTree("$dir/$file") : unlink("$dir/$file");
440 return rmdir($dir);
/plugin/bootswrapper/exe/
H A Dhelp.php25 foreach ($doku_inc_dirs as $dir) {
26 if (!defined('DOKU_INC') && @file_exists("$dir/inc/init.php")) {
27 define('DOKU_INC', "$dir/");
/plugin/dir/
H A Dplugin.info.txt2 base dir
6 name dir
8 url http://www.dokuwiki.org/plugin:dir
/plugin/explorertree/
H A Dhelper.php106 $dir = strtr(cleanID($folder),':','/');
107 if (!($this->cache() && is_array($data = $this->cache()->get('explorertree_cache_'.$dir)))){
109 …onf['datadir'],'search_index',array('ns'=>getNS($ID)),$dir,$dir == '' ? 1 : count(explode('/',$dir
118 …$this->cache()->set($cache_id = 'explorertree_cache_'.$dir,$data,60); // store the data itself (ca…
/plugin/mdpage/vendor/composer/
H A DClassLoader.php383 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 if (file_exists($file = $dir . $pathEnd)) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/findologicxmlexport/vendor/composer/
H A DClassLoader.php383 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 if (file_exists($file = $dir . $pathEnd)) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/webdav/vendor/composer/
H A DClassLoader.php383 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 if (file_exists($file = $dir . $pathEnd)) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/vbsso/vendor/composer/
H A DClassLoader.php382 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 … if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/icalevents/vendor/composer/
H A DClassLoader.php382 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 … if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/jplayer/vendor/composer/
H A DClassLoader.php383 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 if (file_exists($file = $dir . $pathEnd)) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/plugin/quickstats/GEOIP/vendor/composer/
H A DClassLoader.php383 foreach ($this->prefixDirsPsr4[$search] as $dir) {
384 if (file_exists($file = $dir . $pathEnd)) {
393 foreach ($this->fallbackDirsPsr4 as $dir) {
394 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
412 foreach ($dirs as $dir) {
413 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
422 foreach ($this->fallbackDirsPsr0 as $dir) {
423 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {

12345678910>>...24