Package

ViewHelpers

ViewHelper Documentation

cycle

This ViewHelper cycles through the specified values. This can be often used to specify CSS classes for example. Note: To achieve the "zebra class" effect in a loop you can also use the "iteration" argument of the for ViewHelper.

= Examples =

<f:for each="{0:1, 1:2, 2:3, 3:4}" as="foo"><f:cycle values="{0: 'foo', 1: 'bar', 2: 'baz'}" as="cycle">{cycle}</f:cycle></f:for> foobarbazfoo

  • 1
  • 2
  • 3
  • 4

Note: The above examples could also be achieved using the "iteration" argument of the ForViewHelper

Arguments

values anySimpleType, required

The array or object implementing \ArrayAccess (for example \SplObjectStorage) to iterated over

as anySimpleType, required

The name of the iteration variable

ViewHelper Resources

Schema Resources