7913 Posts in 1355 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Possibility to have hasmany relation to be different on every page?
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: | 293 Views |
-
Possibility to have hasmany relation to be different on every page?

28 September 2011 at 9:12pm
i'm trying to get a Tab "Fotos" Wherein the enduser has the possibility to upload thumbnails and photo's. The upload module works, except every page shows the same pictures. I think it's in the fotos.php static has_one -> SiteTree, because of it stays 0 in the db after saving.
I want to have every page different pictures (eg home: 1.jpg, 2.jpg; contact: 3.jpg, 4.jpg),
Foto's.php:
<?php
/**
* Defines the Fotos
*/
class Fotos extends DataObject {
static $db = array(
'SmallCapt' => 'Text',
'LargeCapt' => 'Text'
);static $has_one = array(
'SmallFoto' => 'Image',
'LargeFoto' => 'Image',
'MySiteTree' => 'SiteTree'
);function getCMSFields_forPopup() {
$fields = new FieldSet();$fields->push( new SimpleImageField( 'SmallFoto', 'Kleine foto') );
$fields->push( new Textfield( 'SmallCapt', 'Beschr. kleine foto' ) );
$fields->push( new SimpleImageField( 'LargeFoto', 'Grote foto' ) );
$fields->push( new Textfield( 'LargeCapt', 'Beschtr. grote foto' ) );return $fields;
}
}
?>Page.php
...
public static $has_many = array(
'MyFotos' => 'Fotos'
);function getCMSFields() {
$fields = parent::getCMSFields();
$tablefield = new HasManyComplexTableField(
$this,
'MyFotos',
'Fotos',
array(
'SmallFoto' => 'Kleine foto',
'SmallCapt' => 'Beschrijving',
'LargeFoto' => 'Grote foto',
'LargeCapt' => 'Beschrijving'
),
'getCMSFields_forPopup'
);$fields->addFieldToTab('Root.Content.Fotos', $tablefield );
return $fields;
}
... -
Re: Possibility to have hasmany relation to be different on every page?

29 September 2011 at 4:58am
Well you're in the DataObjectManager forum, so I can only troubleshoot HasManyDOM, not HasManyCTF.
I would use a HasManyFileDOM and use setParentClass("SiteTree") in this case.
--------------------
SilverStripe tips, tutorials, screencasts and more: http://www.leftandmain.com -
Re: Possibility to have hasmany relation to be different on every page?

29 September 2011 at 8:05pm
Ok thanks, i will repost this in the regular forum.
| 293 Views | ||
|
Page:
1
|
Go to Top |

