Skip to content

Instantly share code, notes, and snippets.

@IchHabRecht
Created March 24, 2018 12:36
Show Gist options
  • Save IchHabRecht/ebb8ac8b3402e970c9a43c0cfdd80de2 to your computer and use it in GitHub Desktop.
Save IchHabRecht/ebb8ac8b3402e970c9a43c0cfdd80de2 to your computer and use it in GitHub Desktop.
TypoScript-Kopie vs. Referenz
lib.foo = TEXT
lib.foo.value = blau
lib.bar < lib.foo
lib.foo.value = rot
=> lib.bar.value ist hier blau
lib.foo = TEXT
lib.foo.value = blau
lib.bar =< lib.foo
lib.foo.value = rot
=> lib.bar.value ist hier rot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment