5101 Posts in 1519 Topics by 1116 members
| Go to End | ||
| Author | Topic: | 1737 Views |
-
Re: add method to core class

14 April 2009 at 9:59pm
That worked perfectly. Thank you!
Here's the code I used if it helps anyone else..
====================
Page.php
--------------------
public static $has_one = array(
"TopImage" => "Image"
);MyImage.php
---------------------
class MyImage extends DataObjectDecorator {
public function GenerateTitle() {
return "abc";
}
}_config.php
----------------------
DataObject::add_extension('Image', 'MyImage');
| 1737 Views | ||
| Go to Top |

