From 1af22356a13032a8f47210220d2569fb2909c26f Mon Sep 17 00:00:00 2001 From: Laurent Laffont <llaffont@afi-sa.fr> Date: Mon, 1 Oct 2018 11:49:41 +0200 Subject: [PATCH] dev #59497: speed speed speed --- library/Class/RecordSelection.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/Class/RecordSelection.php b/library/Class/RecordSelection.php index bf80af85321..2efe35dd3e6 100644 --- a/library/Class/RecordSelection.php +++ b/library/Class/RecordSelection.php @@ -28,7 +28,7 @@ class Class_RecordSelection { protected function _setSelection($values) { - Zend_Registry::get('session')->search_record_selection = array_values(array_unique($values)); + Zend_Registry::get('session')->search_record_selection = array_keys(array_flip($values)); return $this; } @@ -65,14 +65,14 @@ class Class_RecordSelection { public function addAll($records) { - array_map([$this, 'add'], $records); - return $this; + $ids = array_map(function($record) { return $record->getId(); }, + $records); + return $this->addAllIds($ids); } public function addAllIds($ids) { - array_map([$this, 'addId'], $ids); - return $this; + return $this->_setSelection(array_merge($this->_getSelection(), $ids)); } -- GitLab