Antwort
 
LinkBack Themen-Optionen Thema durchsuchen Thema bewerten Ansicht
  #1  
Alt 18.05.06, 15:54
Forum Zuschauer
 
Registriert seit: 08.05.06
Alter: 44
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 20:01 Uhr).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #2  
Alt 20.05.06, 16:37
Forum Newbie
 
Registriert seit: 05.04.06
Beiträge: 18

hallo,

hast du schonmal den Tip von Jochen Weiland ausprobiert?
http://jweiland.net/typo3cms/howto/get-content/

Ich denke das scheint damit zu gehen?

Gruß
Andreas
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #3  
Alt 21.05.06, 19:59
Forum Zuschauer
 
Registriert seit: 08.05.06
Alter: 44
Beiträge: 8

Klasse so funktionierts, hatte wohl bei Versuchen in der Variante das zu machen immer die falsche ID, nämlich die vom SysFolder genommen.

Herzlichen Dank für den Tipp.

Gruß

Jochen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #4  
Alt 22.05.06, 08:41
Benutzerbild von mic_jan
TYPO3 Forum Team
Administrator
 
Registriert seit: 05.09.04
Ort: Köln
Beiträge: 1.401

Wenn du es komplett frei im BE ändern möchtest, dann empfehle ich dir die Extension "content_slide". Die würde dann die Inhalte der definierten Spalte auf alle Unterseiten vererben.

Lieben Gruss,

Michael
__________________
Aus gegebenem Anlass mal eine neue Signatur:
Kein Support per PN!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #5  
Alt 22.05.06, 13:49
Benutzerbild von execute
Forum Aktivist
 
Registriert seit: 13.11.05
Beiträge: 93

hier nochmal der code den ich benutze um den content einer ganzen inhaltsseite in der rechten content spalte auszugeben:

Typoscript-Code:
1:
2:
3:
4:
5:
marks.LINKS_CONTENT = CONTENT
marks.LINKS_CONTENT{
table = tt_content
select.pidInList = DIE_ID_DEINER_SEITE
}

"DIE_ID_DEINER_SEITE" muss noch durch die passnde seiten id ausgetauscht werden.

mfg, execute
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Antwort


Themen-Optionen Thema durchsuchen
Thema durchsuchen:

Erweiterte Suche
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge anzufügen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

vB Code ist An.
Smileys sind An.
[IMG] Code ist An.
HTML-Code ist Aus.
Trackbacks are An
Pingbacks are An
Refbacks are An


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Rechte Spalte sprengt Formatierung im IE7 bolshi HTML & CSS 1 19.05.07 19:29
Wenn Spalte leer festen Inhalt einfügen tom613 TYPO3 4.x Fragen und Probleme 4 21.10.06 14:17
Gleichen (News-)Inhalt auf allen Seiten (rechte Spalte) darstellen? preko TYPO3 4.x Fragen und Probleme 1 17.10.06 11:26
rechte Spalte indizieren (TV) icehawk Indexed Search 4 13.09.06 11:17
news für rechte Spalte dj-b TYPO3 3.x Fragen und Probleme 3 12.11.05 22:42


Alle Zeitangaben in WEZ +1. Es ist jetzt 17:30 Uhr.


Powered by vBulletin® Version 3.6.8 Patch Level 2 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Template-Modifikationen durch TMS