Functions:pageContentAttribSet

From Whirlwind eCommerce Wiki
Jump to: navigation, search
Page Template Managers

Page Template Functions

Description

Creates a variable that can be used in by content managers in page management.

Syntax

eV::pageContentAttribSet($replaceString,$resultString)

Paramaters

  • $replaceString STRING
the variable name. Note that the variable name entered here (for instance, "myVariable") will be accessed in the page manager by wrapping it in {$} (for instance, "{$myVariable}").
  • $resultString STRING
the variable value

Return Values

No return value.

Examples

Setting a variable
// set a variable named 'userName' so content managers can drop this into the copy, title or any other field when managing pages using this template
eV::pageContentAttribSet('userName',$_SESSION['user']['firstName'] . " " . _SESSION['user']['lastName']);
// now when content managers enter "{$userName}" into any field in page management, the session user's name will appear.

See Also