Einzelnen Beitrag anzeigen
  #1  
Alt 18.05.06, 16:54
daedalus daedalus ist offline
Forum Zuschauer
 
Registriert seit: 08.05.06
Alter: 45
Beiträge: 8
Frage

Festen Inhalt in rechte Spalte einbinden


Hi liebe Forumler,

sorry, wenn ich hier eine Frage stelle, die bestimmt andere schon oft gestellt haben, aber ich habe hier im Forum und über google alles durchsucht und komme einfach nicht weiter.

Ich habe ein dreispaltiges Layout und möchte in der rechten Spalte auf jeder Seite immer den gleichen Inhalt eingebunden haben. Nun könnte ich den einfach ins template so wie gewünscht reinschreiben, dann müsste ich ihn aber auch immer dort ändern und das würde ich lieber über Typo3 machen.

Nach meinen recherchen habe folgendes versucht (stammt von hier:sad:

Typoscript-Code:
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:
page.10.subparts.rechts = COA

page.10.subparts.rechts {

11 < styles.content.getRight

11.stdWrap.ifEmpty.cObject < styles.content.getRight

11.stdWrap.ifEmpty.cObject {

select.pidInList.data = leveluid:-2

stdWrap.ifEmpty.cObject < styles.content.getRight

stdWrap.ifEmpty.cObject {

select.pidInList.data = leveluid:-3

stdWrap.ifEmpty.cObject < styles.content.getRight

stdWrap.ifEmpty.cObject {

select.pidInList.data = leveluid:-4
}
}
}
}

Das funktioniert aber leider nicht mit der Übergabe an untere Ebenen.

So sieht mein gesamtes Template aus:

Typoscript-Code:
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:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
# Configuring the Auto-Parser for main template:

plugin.tx_automaketemplate_pi1 {

    # Read the template file:

content = FILE

content.file = fileadmin/template/main/template_1.html

    # Here we define which elements in the HTML that

    # should be wrapped in subpart-comments:

elements {

BODY.all = 1

BODY.all.subpartMarker = DOCUMENT_BODY

HEAD.all = 1

HEAD.all.subpartMarker = DOCUMENT_HEADER

HEAD.rmTagSections = title

DIV.all = 1

TD.all = 1

}

    # Prefix all relative paths with this value:

relPathPrefix = fileadmin/template/main/

}

# Menu 1 cObject

temp.menu_1 = HMENU

  # First level menu-object, textual

temp.menu_1.1 = TMENU

temp.menu_1.1 {

    # Normal state properties

NO.allWrap = <div class="menu1-level1-no"><h3> | </h3></div>

    # Enable active state and set properties:

ACT = 1

ACT.allWrap = <div class="menu1-level1-act"><h3> | </h3></div>

}

  # Second level menu-object, textual

temp.menu_1.2 = TMENU

temp.menu_1.2 {

    # Normal state properties

NO.allWrap = <div class="menu1-level2-no"> | </div>

    # Enable active state and set properties:

ACT = 1

ACT.allWrap = <div class="menu1-level2-act"> | </div>

}

# ------------------------

# Path menu cObject

# ------------------------

temp.path = HMENU

# Setting the special property to "rootline" - this will produce a "Path-menu"

temp.path.special = rootline

# First level menu-object, textual

temp.path.1 = TMENU

# Wrapping value for the whole menu:

temp.path.1.wrap = Sie sind hier: &nbsp; |

temp.path.1 {

  # Normal state properties appending " > " to all elements but the last one.

  # (See "optionSplit")

NO.allWrap =   |&nbsp;&gt;&nbsp; |*||*|   |

}

# Main TEMPLATE cObject for the BODY

temp.mainTemplate = TEMPLATE

temp.mainTemplate {

    # Feeding the content from the Auto-parser to the TEMPLATE cObject:

template =< plugin.tx_automaketemplate_pi1

    # Select only the content between the <body>-tags

workOnSubpart = DOCUMENT_BODY

    # Substitute the ###menu_1### subpart with dynamic menu:

subparts.menu_1 < temp.menu_1

    # Substitute the ###path### subpart with dynamic path menu:

subparts.breadCrumb < temp.path

    # Substitute the ###content### subpart with some example content:

subparts.content < styles.content.get

}


# Main TEMPLATE cObject for the HEAD

temp.headTemplate = TEMPLATE

temp.headTemplate {

    # Feeding the content from the Auto-parser to the TEMPLATE cObject:

template =< plugin.tx_automaketemplate_pi1

    # Select only the content between the <head>-tags

workOnSubpart = DOCUMENT_HEADER

}

# Default PAGE object:

page = PAGE

page.typeNum = 0

# Copying the content from TEMPLATE for <body>-section:

page.10 < temp.mainTemplate

# Copying the content from TEMPLATE for <head>-section:

page.headerData.10  < temp.headTemplate

# Rechte Spalte

page.10.subparts.rechts = COA

page.10.subparts.rechts {

11 < styles.content.getRight

11.stdWrap.ifEmpty.cObject < styles.content.getRight

11.stdWrap.ifEmpty.cObject {

select.pidInList.data = leveluid:-2

stdWrap.ifEmpty.cObject < styles.content.getRight

stdWrap.ifEmpty.cObject {

select.pidInList.data = leveluid:-3

stdWrap.ifEmpty.cObject < styles.content.getRight

stdWrap.ifEmpty.cObject {

select.pidInList.data = leveluid:-4
}
}
}
}

Bitte um Antwort in einfachen kurzen Sätzen, ich fürchte meine Aufnahmefähigkeit ist derzeit etwas arg beschränkt

Herzlichen Dank im voraus

Jochen

Geändert von daedalus (21.05.06 um 21:01 Uhr).
Mit Zitat antworten
TYPO3forum.net empfiehlt den T3N Testsieger: Bestes Preis-Leistungs-Verhältnis (Ausgabe 12/2008)