Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

Extending Image on Nested ImageDOM


Go to End


3 Posts   1115 Views

Avatar
zenmonkey

Community Member, 545 Posts

11 December 2009 at 6:59am

I'm trying to extend the image calls on a nested ImageDOM but it doesn't seem to be working.

Here is my Image Extension

<?php 
class BlurImage extends Image {

function generateMainImage($gd) { 
$gd->setQuality(80); 
return $gd->resizeRatio(370,240); 
}

function generateThumbImage($gd) { 
$gd->setQuality(80); 
return $gd->resize(120,80); 
}

} 
?>

Then my Nested Image DataObject

<?php 
class ProdImage extends DataObject
{
	static $db = array (
		'Name' => 'Text',
		'Description' => 'Text',
		'Category' => "Enum('Main, Product, HomeFeature')"
	);
	
	static $has_one = array (
		'Product' => 'Product',
		'Attachment' => 'File',
		'Color' => 'Color',
		'OImage' => 'BlurImage'
	);
	
	public function getCMSFields()
	{
		return new FieldSet(
			new TextField('Name'),
			new TextareaField('Description'),
			new DropdownField('Category','Category', singleton('ProdImage')->dbObject('Category')->enumValues()),
			new FileIFrameField('Attachment')
		);
	}
	
}
?>

When I call $OImage.MainImage.URL I should get a URL pointing to the Resized Image.

The only call that returns anything of note is $OImage.URL which returns the path to assets folder

Any Suggestions? Am I calling it wrong the wrong functions or have I attached it wrong to the DataObject

Avatar
UncleCheese

Forum Moderator, 4102 Posts

18 December 2009 at 8:29am

Where is the DOM? On Product? Do you have that code?

Avatar
zenmonkey

Community Member, 545 Posts

18 December 2009 at 8:54am

ProdImage is Nested into the Color DataObject, but also used as its own DOM on Product.

Here is the Color Object used on the ColorProduct Page

class Color extends DataObject
{
	static $db = array (
		'ColorName' => 'Text',
		'ColorHex' => 'Text',
		'ColorPMS' => 'Text'
	);
	
	static $has_one = array (
		'ColorProduct' => 'ColorProduct'
	);
	
	static $has_many = array (
		'ProdImages' => 'ProdImage'
	);
	
	public function getCMSFields()
	{
		return new FieldSet(
			new TextField('ColorName'),
			new TextField('ColorHex'),
			new TextField('ColorPMS'),
			new ImageDataObjectManager(
				$this, 
				'ProdImages', 
				'ProdImage', 
				'Attachment',
				array(
					'Name' => 'Name', 
					'Description' => 'Description', 
					'Category' => 'Category'
				)
			)
		);
	}
	
	function StripColorName() {
		return str_replace(" ","", $this->ColorName);
		}
	
}

And here is how it lives on the Product Page type

static $has_many = array (
		'ProdImage' => 'ProdImage',
		'Resources' => 'Resource',
		'Reviews' => 'Review',
	);

...


$productImageManager = new ImageDataObjectManager(
			$this, // Controller
			'ProdImage', // Source name
			'ProdImage', // Source class
			'Attachment', // File name on DataObject
			array(
				'Name' => 'Name', 
				'Description' => 'Description', 
				'Category' => 'Category'
			), 
			'getCMSFields_forPopup' // Detail fields (function name or FieldSet object)
		
		$productImageManager->setBrowseButtonText("Upload (PNG or JPG only)"); 
		$productImageManager->setGridLabelField('Name'); 
		$productImageManager->setPluralTitle('ProdImage');
				
		$fields->addFieldToTab("Root.Content.ProductImages", $productImageManager);