Created
April 16, 2013 14:45
-
-
Save chillu/5396502 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NewsPage extends Page { | |
static $db = array( | |
'SidebarTextAboveImage' => 'Text', | |
'SidebarTextBelowImage' => 'Text', | |
); | |
static $has_one = array( | |
'SidebarImage' => 'Image' | |
); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Content | |
<div class="sidebar"> | |
$SidebarTextAboveImage | |
$SidebarImage | |
$SidebarTextBelowImage | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PortfolioPage extends Page { | |
static $db = array( | |
'SidebarJobAds' => 'Text', | |
'SidebarJobAdsHeight' => 'Int' | |
); | |
// Duplicates relation, porfolio has sidebar images | |
// but doesn't allow text. But it has job ads. | |
static $has_one = array( | |
'SidebarImage' => 'Image', | |
); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Content | |
<div class="sidebar"> | |
$SidebarImage | |
$SidebarJobAds | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment