Skip to content

Instantly share code, notes, and snippets.

@croxton
Last active April 8, 2018 02:24
Show Gist options
  • Save croxton/a4b6110d5bb6ce64ca16 to your computer and use it in GitHub Desktop.
Save croxton/a4b6110d5bb6ce64ca16 to your computer and use it in GitHub Desktop.
Evaluating globals with Switchee
{exp:channel:entries...}

	{!-- assumming /my/url?statement_id=... --}

	{exp:switchee name="get:statement_id" parse="inward"}

		{!-- match 0-50 --}
		{case value="#^[0-9]$#|#^[1-4][0-9]$#|#^50$"}
			{switchee variable="{statement_factor}" parse="inward"}
				{case value="Agree"}
					...
				{/case}
				...
			{/switchee}	

		{/case}

		{case default="yes"}
			...
		{/case}

	{/exp:switchee}

{/exp:channel:entries}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment