From 2589fbcf04d8442266def3a2bf5a5475a3d1f185 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 13 Nov 2015 17:04:56 +0100 Subject: [PATCH] IdoQuery::joinHookedVirtualTable: missing method --- .../Monitoring/Backend/Ido/Query/IdoQuery.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php index bbaae6fb1..d39effc0f 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/IdoQuery.php @@ -882,6 +882,19 @@ abstract class IdoQuery extends DbQuery return $this; } + /** + * Tell a hook to join a virtual table + * + * @param String $table + * @return $this + */ + protected function joinHookedVirtualTable($table) + { + $this->hookedVirtualTable[$table]->joinVirtualTable($table); + $this->joinedVirtualTables[$table] = true; + return $this; + } + /** * Get the table for a specific alias *