Home
last modified time | relevance | path

Searched refs:recursive (Results 1 – 25 of 64) sorted by relevance

123

/plugin/directorylist/syntax/
H A DSplFileArray.php24 * @param boolean $recursive Collect information recursivly or not
27 public function __construct($path, $recursive = true, $fileorder) argument
30 $this->filesystemarray = $this->readdir($path, $recursive);
45 * @param bool $recursive
48 private function readDir($path, $recursive) argument
56 if ( $value->isDir() && $recursive ) {
57 $array[$key] = $this->readDir($value->getRealPath(), $recursive);
/plugin/usersubscriptions/
H A Dsyntax.php46 $recursive = false;
60 $recursive = isset($opts['r']) ? $opts['r'] : 0;
61 if(!is_numeric($recursive)) $recursive = -2;
67 return array($ns, $recursive, $deletelink, $quicksubscribe, $displayinheritedsubscriptions);
83 $recursive = $data[1];
141 $elements = $this->_getUserSubscriptions($ns, $recursive);
167 function _getUserSubscriptions($ns, $recursive, $lvl=0, $nss=false) { argument
189 if(!$item->isDot() && ($recursive != -1)) {
192 …$us = array_merge($us, $this->_getUserSubscriptions($scns, $recursive-1, $lvl+1, $nss || ($sns && …
H A DREADME9 add the r=<depth> (no value, ie r or r=, means infinite) option to make listing recursive,
/plugin/distribute/
H A Dhelper.funcs.util.php4 function my_filemtime($f,$recursive=false){ argument
5 if($recursive && is_dir($f)){
17 function getFilesInDir($dir, $recursive=false, $type='df', $filter='', $showhidden=false, $showdots… argument
27 if ($recursive && is_dir($dir.$f) && $f!='.' && $f!='..'){
28 $gs = getFilesInDir($dir.$f, $recursive, $type, $filter, $showhidden, $showdots);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DUtils.php149 …* @param bool $recursive If true, resolves new promises that might have been added to the stack d…
153 public static function all($promises, $recursive = false) argument
169 if (true === $recursive) {
170 $promise = $promise->then(function ($results) use ($recursive, &$promises) {
173 return self::all($promises, $recursive);
H A Dfunctions.php171 …* @param bool $recursive If true, resolves new promises that might have been added to the stack d…
177 function all($promises, $recursive = false) argument
179 return Utils::all($promises, $recursive);
/plugin/ifauthex/lib/
H A Dparser.php80 public function isExpanded($recursive=true) { argument
90 … if ($arg instanceof TokenInstance || ($recursive && !$arg->isExpanded($recursive))) {
100 public function expand($elmDef, $recursive=true) { argument
106 if ($this->isExpanded($recursive)) {
110 if ($recursive) {
122 public function findUnexpandedToken($recursive=true) { argument
128 if ($this->isExpanded($recursive)) {
134 } elseif ($recursive) {
183 public function ensureWellFormed($recursive=true) { argument
196 if ($recursive) {
[all …]
/plugin/directorylist/
H A Dreadme.md23 <directorylist: path="value" ignore="value" recursive="1" fileorder="asc">
55 You can specify if you want to list your directory recursive or not.
62 <directorylist: [...] recursive="0">
63 <directorylist: [...] recursive="1">
67 <directorylist: [...] recursive="false">
68 <directorylist: [...] recursive="true">
/plugin/bookcreator/action/
H A Dhandleselection.php70 $recursive = $INPUT->post->str('r');
71 $response = $this->searchPages($namespace, $recursive);
291 * @param boolean $recursive Search in sub-namespaces too?
294 protected function searchPages($ns, $recursive) { argument
298 if ($recursive == 'true') {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php964 * @param bool $recursive
977 * @param bool $recursive
1012 * @param bool $recursive
1594 * @param bool $recursive
1642 * @param bool $recursive
1663 * @param bool $recursive
1680 if ($recursive) {
1710 * @param bool $recursive
1728 if ($recursive) {
1952 * @param bool $recursive
[all …]
/plugin/prolog/
H A Dattribute_include.php234 …* @param bool $recursive if set to "true", it also scans all sub-directories, if set to "false", o…
238 function scanDirectory($directory = null, $recursive = false, &$file_list = array()) argument
253 if(is_dir($path) && $recursive)
254 $this->scanDirectory($path, $recursive, $file_list);
/plugin/webcomponent/
H A Dwebcomponent.php126 mkdir($conf['datadir'], $mode = 0777, $recursive = true);
132 mkdir($conf['cachedir'], $mode = 0777, $recursive = true);
/plugin/webcomponent/_test/
H A DREADME.md29 mkdir($conf['datadir'], $mode = 0777, $recursive = true);
35 mkdir($conf['cachedir'], $mode = 0777, $recursive = true);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DCHANGELOG.md31 - Optional `$recursive` flag to `all`
73 - Update Promise to allow recursive waiting without unwrapping exceptions.
/plugin/archivegenerator/
H A Dadmin.php339 * @param bool $recursive whether to add subdirectories as well
344 protected function addDirToArchive(Zip $archive, $srcDir, $recursive = true, $skipRegex = null) argument
348 if ($recursive) {
356 $this->addFilesToArchive(DOKU_INC . $srcDir, $archive, !$recursive, $skipRegex);
/plugin/latexit/
H A Drenderer.php76 protected $recursive; variable in renderer_plugin_latexit
224 $this->recursive = FALSE;
1009 if ($this->recursive) {
1046 $this->recursive = FALSE;
1560 * @param bool $recursive Will next link be added recursively?
1562 public function _setRecursive($recursive) { argument
1563 $this->recursive = $recursive;
/plugin/swiftmail/Swift/Message/
H A DMime.php206 public function setEncoding($encoding, $recursive=false, $non_ascii=false) argument
233 if ($recursive)
237 … if (!$child->getEncoding()) $this->children[$id]->setEncoding($encoding, $recursive, $non_ascii);
/plugin/loadskin/lang/en/
H A Dintro.txt5 The page check is recursive, that means, if you specify a different template for a wiki page ''wiki…
/plugin/combo/ComboStrap/
H A DFile.php118 return mkdir($this->getAbsoluteFileSystemPath(), $mode = 0770, $recursive = true);
H A DLocalFileSystem.php113 $result = mkdir($dirPath->toAbsolutePath()->toAbsoluteId(), $mode = 0770, $recursive = true);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DCivicInfo.php158 'recursive' => [
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DParser.php613 * @param bool $recursive Whether we should merge recursively or
621 $recursive = false argument
634 if (true === $recursive) {
/plugin/projects/action/
H A Daction.php303 $recursive = $_REQUEST['Recursive'];
304 if (!$project->clean($recursive))
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-4.0.md7 …/github.com/sebastianbergmann/php-code-coverage/pull/515): Wrong use of recursive iterator causing…
/plugin/projects/lib/
H A Dproject.php274 public function clean($recursive = true) { argument
286 else if ($recursive) {

123