1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| ### Öffne ###
/lang/German/system/abcodes.php
### Finde ###
$cs_lang['thread'] = 'Forum Thema';
### Füge danach ein ###
$cs_lang['blog'] = 'Blog-Eintrag';
### Öffne ###
/system/core/abcode.php
### Finde ###
$img = cs_html_img($coop . 'inserthyperlink' . $ext,0,0,0,$cs_lang['thread']);
$var .= cs_abcode_button($name, $cs_lang['thread'], '[threadid=X]', '[/threadid]', $img);
### Füge danach ein ###
$img = cs_html_img($coop . 'blog' . $ext,0,0,0,$cs_lang['blog']);
$var .= cs_abcode_button($name, $cs_lang['blog'], '[blog=X]', '[/blog]', $img);
### Finde ###
function cs_abcode_threadid($matches) {
return cs_link($matches[2],'board','thread','where/'.$matches[1]);
}
### Füge danach ein ###
## ACHTUNG: BEI DEAKTIVIERTEM MOD-REWRITE MUSS DER / zum = werden :D ##
function cs_abcode_blog($matches) {
return cs_link($matches[2],'blog','view','id/'.$matches[1]);
}
### Suche ###
$replace = preg_replace_callback("=\[threadid\=(.*?)\](.*?)\[/threadid\]=si","cs_abcode_threadid",$replace);
### Füge danach ein ###
$replace = preg_replace_callback("=\[blog\=(.*?)\](.*?)\[/blog\]=si","cs_abcode_blog",$replace);
## Lade das Symbol in den Ordner ###
/symbols/crystal_project/openoffice/
## Bitte vorher die Grafik in lc_blog.png umbennen.
=> http://img523.imageshack.us/img523/3278/lcblogwi9.png
### EoM - Save/Close all Files ### |