7912 Posts in 1355 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Resolved [ Create page to display additional details field ]
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 436 Views |
-
Resolved [ Create page to display additional details field ]

9 June 2011 at 4:39pm Last edited: 9 June 2011 4:40pm
Hi There,
I am using FileDataObjectManager to create my Resources Page and announcement page.
Is it to possible to create another page to enable visitor to click and see more details for each resource.On ResourcePage.ss I just display a little information, I want them to click on title and direct to a new page which display only one record with all additional detail information.
Your I really appreciated.
Bunheng
--------------------------
Rsource.php
--------------------------class Resource extends DataObject {
static $db = array(
'Title' => 'Text',
'Description' => 'HTMLText',
'Date' => 'Date'
);
static $has_one = array(
'ResourcePage' => 'ResourcePage',
'ResourceFile' => 'File'
);
static $singular_name = "Resource";
static $plural_name = "Resources";function getCMSFields() {
$fields = new FieldSet(
new TextField('Title', 'Title'),
new SimpleHTMLEditorField('Description', 'Description'),
new FileUploadField('ResourceFile', 'Addional Information'),
new DatePickerField('Date', 'Released Date')
);
return $fields;
}}
-----------------------------
ResourcePage.php
-----------------------------
class ResourcePage extends Page {static $icon = "";
static $db = array();
static $has_one = array();
static $has_many = array(
'Resources' => 'Resource'
);
static $singular_name = "Resource Page";
static $plural_name = "Resource Pages";
function getCMSFields(){
$myfields = parent::getCMSFields();
$mytable = new FileDataObjectManager(
$this,
'Resources',
'Resource',
'ResourceFile',
array(
'Title' => 'Title',
'Description' => 'Description',
'Date' => 'Date'
)
);
$myfields->addFieldToTab('Root.Content.Resources', $mytable);
return $myfields;
}}
class ResourcePage_Controller extends Page_Controller{}
------------------------------
ResourcePageHolder.php
----------------------------------class ResourcePageHolder extends Page {
static $db = array();
static $allowed_children = array('RsourcePage');
static $singular_name = 'RsourcePage';
}
class ResourcePageHolder_Controller extends Page_Controller {}
-----------------------------------
ResourcePage.ss
-----------------------------------
<div class="typography">
<h1>$Title</h1>
<% if Resources %>
<% control Resources %>
<div id="announcelist">
<ul>
<li class="title"><b><a href="$Link">$Title</a></b></li><li>$Description</li>
<li class="details">
<a href="$ResourceFile.Link"><b>Download Detail</b></a>
<% if Date %>
<span class="listdate"> Expiry Date: $Date.Nice</span><% end_if %>
</li></ul>
<% end_control %>
<% else %>
<p>There is no record.</p>
<% end_if %>
</div>
</div> -
Re: Resolved [ Create page to display additional details field ]

10 June 2011 at 4:12am
This has been written up a number of times.. I'd probably start here: http://www.ssbits.com/tutorials/2010/dataobjects-as-pages-part-1-keeping-it-simple/
--------------------
SilverStripe tips, tutorials, screencasts and more: http://www.leftandmain.com -
Re: Resolved [ Create page to display additional details field ]

10 June 2011 at 12:56pm
Good morning,
I have been looking for this kind tutorial
I really appreciate your kindness advice and contribution.My Best Regards,
Bunheng
| 436 Views | ||
|
Page:
1
|
Go to Top |
