21279 Posts in 5729 Topics by 2600 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 438 Views |
-
One object two Image

7 April 2011 at 12:41am
Hello, i seriously surprised, but i can't made easily two images at one Object (Page)
Based on tutorial, i add one more image at relation.
static $has_one = array(
'PhotoLeft' => 'Image',
'PhotoRight' => 'Image',
);It`s don't work, but i expect another.
I guess that the picture is not a "field ". This relation 1-1.
But strangely it is impossible to set two relation by different fields.What's the easiest way to make two (not gallery) pictures in one page?
tnx, SS newbie
-
Re: One object two Image

7 April 2011 at 12:55am
There is a getCMSFields() method in your Page class and you did rebuild the database with "/dev/build/?flush"?
-
Re: One object two Image

7 April 2011 at 12:58am
It`s like
$fields = parent::getCMSFields();
$fields->addFieldToTab("Root.Content.Images", new ImageField('PhotoLeft'));
$fields->addFieldToTab("Root.Content.Images", new ImageField('PhotoRight'));At Images folder i see only one upload form, and empty second field.
-
Re: One object two Image

7 April 2011 at 1:29am
If you don't rebuild the database, the result would be a empty field. Turn on dev enviroment for proper error messages in your _config.php with ...
Director::set_environment_type("dev");
... and rebuild the database again. -
Re: One object two Image

7 April 2011 at 2:23am
Rebuild the database make my happy
bg tnx
I thing i do it many times before, and nothing happens.
| 438 Views | ||
|
Page:
1
|
Go to Top |


