17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1367 Views |
-
Include PHP command in .ss

5 June 2008 at 11:58pm
How can you add a PHP Query in the Page.ss File?
if($HeaderImage == NULL){$HeaderImage=="imsa_files/construct/header.png"; }else{ $HeaderImage=="$HeaderImage";}Where $HeaderImage is a Variable saved into the database.
-
Re: Include PHP command in .ss

6 June 2008 at 12:58am
I've been asking the same thing but no joy so far. I want to add a PHP include to a .ss file, but I get an error everytime.
Anyone any ideas no?
-
Re: Include PHP command in .ss

6 June 2008 at 1:53am Last edited: 6 June 2008 1:55am
corkg,
if 'Variable saved into the database' means a page db_column:
i know it's not absolutely the thing you want,
i do these things by implementing a function on the page (or DataObject)
which has this logic inside.
than use the function in the templatefe:
public function RealHeaderImage() {
if (!$this->HeaderImage) {
return "imsa_files/construct/header.png";
}
return $this->HeaderImage;
}then in ss use
$RealHeaderImage()
not sure whether soemeone has to use brackets, or not...g
Helmut
| 1367 Views | ||
|
Page:
1
|
Go to Top |



