User tests: Successful: Unsuccessful:
Pull Request for Issue #33553 .
Back-integrate from 4.0-dev to here (staging) the following changes from PR #25761 for fixing bind() with objects in the JTable class:
get_object_vars
if the $src
parameter is an object, so that it is:get_object_vars
.I'm wondering why the 4th step in the above list currently comes before the 1st without this PR.
Step 1: On a current staging branch or latest 3.9.x nightly build, switch on ""Debug System" and set "Error Reporting" to "Maximum" or "Development".
Step 2: Add the following code to some administrator view:
// Test PR-33558 begin
JTable::addIncludePath(JPATH_ROOT . '/administrator/components/com_contact/tables');
$row1 = JTable::getInstance('Contact', 'ContactTable');
$contact1 = [
'name' => 'Bat Man',
'alias' => 'bat-man',
'catid' => 4,
'params' => ['show_contact_list' => 0, 'show_tags' => ''],
'language' => '*',
'published' => 1,
'access' => 1,
];
$row1->bind($contact1);
$row1->store();
echo '<div>Contact 1 saved.<div>';
$row2 = JTable::getInstance('Contact', 'ContactTable');
$contact2 = new stdClass;
$contact2->name = 'John Doe';
$contact2->alias = 'john-doe';
$contact2->catid = 4;
$contact2->params = ['show_contact_list' => 0, 'show_tags' => ''];
$contact2->language = '*';
$contact2->published = 1;
$contact2->access = 1;
$row2->bind($contact2);
$row2->store();
echo '<div>Contact 2 saved.<div>';
// Test PR-33558 end
E.g. you can add it just before the following line in the users view's default template:
https://github.com/joomla/joomla-cms/blob/staging/administrator/components/com_users/views/users/tmpl/default.php#L20
The code creates or updates 2 new contact records in database, using bind() and store(), one contact given as array and the other one as object (stdClass).
Step 3: Navigate to the view modified in the previous step.
In my example: "Users -> Manage" (administrator/index.php?option=com_users&view=users
).
Result: Error 'Cannot use object of type stdClass as array', see issue #33553 and section "Actual result BEFORE applying this Pull Request" below.
Step 4: Check in database if the two contacts have been created.
Result: Only the first contact "Bat Man" has been created.
Step 5: Delete that contact.
Step 6: Apply the patch of this PR.
Step 7: Navigate again to the view modified in the previous step, or reload the page if still there.
Result: No error, the debug output is shown, see section "Expected result AFTER applying this Pull Request" below.
Step 8: Check in database if the two contacts have been created.
Result: Both contacts "Bat Man" and "John Doe" have been created.
Storing data fails with error 'Cannot use object of type stdClass as array'.
The line number may be different to the one shown in the screenshot because that screenshot was made when testing PR #33558 which I had made for 3.10).
Storing data succeeds.
The debug output is shown.
None.
This change doesn't need to be merged up into 4.0-dev since it has been applied there already, see PR #25761 . The unit tests are implemented differently there.
I.e. when merging this up and getting conflicts, just chose to use the existing 4.0-dev code for these when resolving.
Status | New | ⇒ | Pending |
Category | ⇒ | Libraries Unit Tests |
I have tested this item
Status | Pending | ⇒ | Ready to Commit |
RTC
Status | Ready to Commit | ⇒ | Fixed in Code Base |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2021-05-15 10:06:12 |
Closed_By | ⇒ | HLeithner | |
Labels |
Added:
?
?
?
|
thanks
I have tested this item✅ successfully on 7424cc4
This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/33633.