Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
AdapterInterface.php
001 <?php
002
003 /*
004 * This file is part of the Symfony package.
005 *
006 * (c) Fabien Potencier <fabien@symfony.com>
007 *
008 * For the full copyright and license information, please view the LICENSE
009 * file that was distributed with this source code.
010 */
011
012 namespace Symfony\Component\Finder\Adapter;
013
014 /**
015 * @author Jean-François Simon <contact@jfsimon.fr>
016 *
017 * @deprecated since 2.8, to be removed in 3.0.
018 */
019 interface AdapterInterface
020 {
021 /**
022 * @param bool $followLinks
023 *
024 * @return AdapterInterface Current instance
025 */
026 public function setFollowLinks($followLinks);
027
028 /**
029 * @param int $mode
030 *
031 * @return AdapterInterface Current instance
032 */
033 public function setMode($mode);
034
035 /**
036 * @param array $exclude
037 *
038 * @return AdapterInterface Current instance
039 */
040 public function setExclude(array $exclude);
041
042 /**
043 * @param array $depths
044 *
045 * @return AdapterInterface Current instance
046 */
047 public function setDepths(array $depths);
048
049 /**
050 * @param array $names
051 *
052 * @return AdapterInterface Current instance
053 */
054 public function setNames(array $names);
055
056 /**
057 * @param array $notNames
058 *
059 * @return AdapterInterface Current instance
060 */
061 public function setNotNames(array $notNames);
062
063 /**
064 * @param array $contains
065 *
066 * @return AdapterInterface Current instance
067 */
068 public function setContains(array $contains);
069
070 /**
071 * @param array $notContains
072 *
073 * @return AdapterInterface Current instance
074 */
075 public function setNotContains(array $notContains);
076
077 /**
078 * @param array $sizes
079 *
080 * @return AdapterInterface Current instance
081 */
082 public function setSizes(array $sizes);
083
084 /**
085 * @param array $dates
086 *
087 * @return AdapterInterface Current instance
088 */
089 public function setDates(array $dates);
090
091 /**
092 * @param array $filters
093 *
094 * @return AdapterInterface Current instance
095 */
096 public function setFilters(array $filters);
097
098 /**
099 * @param \Closure|int $sort
100 *
101 * @return AdapterInterface Current instance
102 */
103 public function setSort($sort);
104
105 /**
106 * @param array $paths
107 *
108 * @return AdapterInterface Current instance
109 */
110 public function setPath(array $paths);
111
112 /**
113 * @param array $notPaths
114 *
115 * @return AdapterInterface Current instance
116 */
117 public function setNotPath(array $notPaths);
118
119 /**
120 * @param bool $ignore
121 *
122 * @return AdapterInterface Current instance
123 */
124 public function ignoreUnreadableDirs($ignore = true);
125
126 /**
127 * @param string $dir
128 *
129 * @return \Iterator Result iterator
130 */
131 public function searchInDirectory($dir);
132
133 /**
134 * Tests adapter support for current platform.
135 *
136 * @return bool
137 */
138 public function isSupported();
139
140 /**
141 * Returns adapter name.
142 *
143 * @return string
144 */
145 public function getName();
146 }
147