XOOPS / XoopsCore

Core Framework for next version of XOOPS CMS: 2.6.0
https://xoops.org
138 stars 81 forks source link

Can't extend XoopsObjectTree effectively #540

Closed zyspec closed 5 years ago

zyspec commented 7 years ago

All of the XoopsObjectTree vars are set as private. By making these vars private it's not possible to extend the class (without throwing deprecated access method errors) since there are no 'getters or setters' for the vars.

Either need to make the vars protected instead of private or provide getters/setters for each var so the class can be inherited.