Difference between revisions of "Functions:pageContentAttribSet"

From Whirlwind eCommerce Wiki
Jump to: navigation, search
(New page: == Description == Creates a variable that can be used in by content managers in page management. == Syntax == eV::pageContentAttribSet($replaceString,$resultString) == Paramaters == *$re...)
 
Line 24: Line 24:
  
 
== See Also ==
 
== See Also ==
[[Functions:pageContentAttribsSet|pageContentAttribsSet]]
+
*[[Functions:pageContentAttribsSet|pageContentAttribsSet]]
[[Functions:pageContentAttribStart/pageContentAttribEnd|pageContentAttribStart/pageContentAttribEnd]]
+
*[[Functions:pageContentAttribStart/pageContentAttribEnd|pageContentAttribStart/pageContentAttribEnd]]

Revision as of 04:19, 8 October 2008

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
  • $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