We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we use the old models from rn_base and should migrate to the new DomainInterface.
rn_base
DomainInterface
I'm not sure, if this is a BC break but it might be worth.
$model->record
$model->record['title']
$model->getTitle()
$model->getProperty('title')
tx_rnbase_IModel
Tx_Rnbase_Domain_Model_DataInterface
The text was updated successfully, but these errors were encountered:
@digedag @rengaw83 @hannesbochmann Any suggestions?
Sorry, something went wrong.
it is a bc, but yes, we should change this, it will be worth it!
#50 remove deprecated model interfaces for support of rn_base 1.14
a2d3169
No branches or pull requests
Currently we use the old models from
rn_base
and should migrate to the newDomainInterface
.I'm not sure, if this is a BC break but it might be worth.
$model->record
usage:$model->record['title']
becomes$model->getTitle()
or$model->getProperty('title')
tx_rnbase_IModel
withTx_Rnbase_Domain_Model_DataInterface
The text was updated successfully, but these errors were encountered: