We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 715d707 commit 326a281Copy full SHA for 326a281
src/Model/CustomerView/FilterDefinition/Listing/Dao.php
@@ -46,4 +46,9 @@ public function load()
46
$this->model->setFilterDefinitions($filterDefinitions);
47
return $filterDefinitions;
48
}
49
+
50
+ public function getTotalCount()
51
+ {
52
+ return $this->db->fetchOne('SELECT count(*) FROM ' . FilterDefinition\Dao::TABLE_NAME . $this->getCondition() . $this->getOrder() . $this->getOffsetLimit(), $this->model->getConditionVariables());
53
+ }
54
0 commit comments