Verzeichnisstruktur phpBB-3.0.0
- Veröffentlicht
- 12.12.2007
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 |
search_ignore_words.php
001 <?php
002 /**
003 *
004 * search_ignore_words [English]
005 *
006 * @package language
007 * @version $Id$
008 * @copyright (c) 2005 phpBB Group
009 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
010 *
011 */
012
013 if (!defined('IN_PHPBB'))
014 {
015 exit;
016 }
017
018 $words = array(
019 'a',
020 'about',
021 'after',
022 'ago',
023 'all',
024 'almost',
025 'along',
026 'alot',
027 'also',
028 'am',
029 'an',
030 'and',
031 'answer',
032 'any',
033 'anybody',
034 'anybodys',
035 'anywhere',
036 'are',
037 'arent',
038 'around',
039 'as',
040 'ask',
041 'askd',
042 'at',
043 'bad',
044 'be',
045 'because',
046 'been',
047 'before',
048 'being',
049 'best',
050 'better',
051 'between',
052 'big',
053 'btw',
054 'but',
055 'by',
056 'can',
057 'cant',
058 'come',
059 'could',
060 'couldnt',
061 'day',
062 'days',
063 'days',
064 'did',
065 'didnt',
066 'do',
067 'does',
068 'doesnt',
069 'dont',
070 'down',
071 'each',
072 'etc',
073 'either',
074 'else',
075 'even',
076 'ever',
077 'every',
078 'everybody',
079 'everybodys',
080 'everyone',
081 'far',
082 'find',
083 'for',
084 'found',
085 'from',
086 'get',
087 'go',
088 'going',
089 'gone',
090 'good',
091 'got',
092 'gotten',
093 'had',
094 'has',
095 'have',
096 'havent',
097 'having',
098 'her',
099 'here',
100 'hers',
101 'him',
102 'his',
103 'home',
104 'how',
105 'hows',
106 'href',
107 'I',
108 'Ive',
109 'if',
110 'in',
111 'ini',
112 'into',
113 'is',
114 'isnt',
115 'it',
116 'its',
117 'its',
118 'just',
119 'know',
120 'large',
121 'less',
122 'like',
123 'liked',
124 'little',
125 'looking',
126 'look',
127 'looked',
128 'looking',
129 'lot',
130 'maybe',
131 'many',
132 'me',
133 'more',
134 'most',
135 'much',
136 'must',
137 'mustnt',
138 'my',
139 'near',
140 'need',
141 'never',
142 'new',
143 'news',
144 'no',
145 'none',
146 'not',
147 'nothing',
148 'now',
149 'of',
150 'off',
151 'often',
152 'old',
153 'on',
154 'once',
155 'only',
156 'oops',
157 'or',
158 'other',
159 'our',
160 'ours',
161 'out',
162 'over',
163 'page',
164 'please',
165 'put',
166 'question',
167 'questions',
168 'questioned',
169 'quote',
170 'rather',
171 'really',
172 'recent',
173 'said',
174 'saw',
175 'say',
176 'says',
177 'she',
178 'see',
179 'sees',
180 'should',
181 'sites',
182 'small',
183 'so',
184 'some',
185 'something',
186 'sometime',
187 'somewhere',
188 'soon',
189 'take',
190 'than',
191 'true',
192 'thank',
193 'that',
194 'thatd',
195 'thats',
196 'the',
197 'their',
198 'theirs',
199 'theres',
200 'theirs',
201 'them',
202 'then',
203 'there',
204 'these',
205 'they',
206 'theyll',
207 'theyd',
208 'theyre',
209 'this',
210 'those',
211 'though',
212 'through',
213 'thus',
214 'time',
215 'times',
216 'to',
217 'too',
218 'under',
219 'until',
220 'untrue',
221 'up',
222 'upon',
223 'use',
224 'users',
225 'version',
226 'very',
227 'via',
228 'want',
229 'was',
230 'way',
231 'we',
232 'well',
233 'went',
234 'were',
235 'werent',
236 'what',
237 'when',
238 'where',
239 'which',
240 'who',
241 'whom',
242 'whose',
243 'why',
244 'wide',
245 'will',
246 'with',
247 'within',
248 'without',
249 'wont',
250 'world',
251 'worse',
252 'worst',
253 'would',
254 'wrote',
255 'www',
256 'yes',
257 'yet',
258 'you',
259 'youd',
260 'youll',
261 'your',
262 'youre',
263 'yours',
264 'AFAIK',
265 'IIRC',
266 'LOL',
267 'ROTF',
268 'ROTFLMAO',
269 'YMMV',
270 );
271
272 ?>