in reply to Re^4: Dealing with design -- inheritance + exporting gone bad :(..
in thread Dealing with design -- inheritance + exporting gone bad :(..

You can't export object properties directly. You also don't need to since clearly, if you're exporting properties into your class, they are class wide.

You could change the methods to set the objects properties when called and then make sure all the proper methods get called when new() is called.

  • Comment on Re^5: Dealing with design -- inheritance + exporting gone bad :(..