From 8ca6cc32b2c789a3149861159ad258f2cb9491e3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 14:39:39 +0200 Subject: Adding upstream version 2.11.4. Signed-off-by: Daniel Baumann --- library/vendor/Zend/Db/Table.php | 77 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 library/vendor/Zend/Db/Table.php (limited to 'library/vendor/Zend/Db/Table.php') diff --git a/library/vendor/Zend/Db/Table.php b/library/vendor/Zend/Db/Table.php new file mode 100644 index 0000000..0dbfe8c --- /dev/null +++ b/library/vendor/Zend/Db/Table.php @@ -0,0 +1,77 @@ + $config); + } else { + // process this as table with or without a definition + if ($definition instanceof Zend_Db_Table_Definition + && $definition->hasTableConfig($config)) { + // this will have DEFINITION_CONFIG_NAME & DEFINITION + $config = $definition->getTableConfig($config); + } else { + $config = array(self::NAME => $config); + } + } + } + + parent::__construct($config); + } +} -- cgit v1.2.3