Contents |
Creates a variable that accessible via the page manager. All output between the start tag (pageContentAttribSetStart) and the end tag (pageContentAttribSetEnd) will be the value of the variable.
eV::pageContentAttribStart($replaceString); echo "... output here ..."; eV::pageContentAttribEnd();
Does not return a value.
eV::pageContentAttribStart("count"); for($i=1;$i<=5;$i++) echo "$i.."; eV::pageContentAttribEnd(); // now when {$count} is entered into page management for a page using this template, "1..2..3..4..5.." will be outputted in it's place