diff options
author | Silvio <silvio@devlet.com.br> | 2010-04-26 13:45:05 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-04-26 13:45:05 -0300 |
commit | 63a6a68ec94679952a1479530924fb4b50967175 (patch) | |
tree | 032a7a9dd237a1e2acd1c1102d90708e3f638a74 | |
parent | 19dbb82b0dabdf972a6d1e2c4fe8781b91deadd4 (diff) | |
download | cinisis-63a6a68ec94679952a1479530924fb4b50967175.tar.gz cinisis-63a6a68ec94679952a1479530924fb4b50967175.tar.bz2 |
Enhancements on check() implementations
-rw-r--r-- | classes/BiblioIsisDb.php | 7 | ||||
-rw-r--r-- | classes/MaleteDb.php | 7 | ||||
-rw-r--r-- | classes/PhpIsisDb.php | 7 | ||||
-rw-r--r-- | tests/read.php | 2 |
4 files changed, 22 insertions, 1 deletions
diff --git a/classes/BiblioIsisDb.php b/classes/BiblioIsisDb.php index 616cc77..d7fdd1c 100644 --- a/classes/BiblioIsisDb.php +++ b/classes/BiblioIsisDb.php @@ -118,6 +118,13 @@ class BiblioIsisDb implements IsisDb { * @see IsisDb::check() */ public function check($schema, $section = NULL) { + // Check API availability. + if (!class_exists('Perl')) { + throw new Exception('Could not find Perl class. Please check your php-perl installation.'); + return FALSE; + } + + // Check schema configuration. return SchemaDb::check($schema, $section); } diff --git a/classes/MaleteDb.php b/classes/MaleteDb.php index 7fa0afa..201ddc0 100644 --- a/classes/MaleteDb.php +++ b/classes/MaleteDb.php @@ -98,6 +98,13 @@ class MaleteDb implements IsisDb { * @see IsisDb::check() */ public function check($schema, $section = NULL) { + // Check API availability. + if (!class_exists('Isis_Db')) { + throw new Exception('Could not find Isis_Db class. Please check your malete installation.'); + return FALSE; + } + + // Check schema configuration. return SchemaDb::check($schema, $section); } diff --git a/classes/PhpIsisDb.php b/classes/PhpIsisDb.php index 136b657..1f64075 100644 --- a/classes/PhpIsisDb.php +++ b/classes/PhpIsisDb.php @@ -87,6 +87,13 @@ class PhpIsisDb implements IsisDb { * @see IsisDb::check() */ public function check($schema, $section = NULL) { + // Check API availability. + if (!function_exists('isis_open')) { + throw new Exception('Could not find function isis_open. Please check your php-isis installation.'); + return FALSE; + } + + // Check schema configuration. return SchemaDb::check($schema, $section); } diff --git a/tests/read.php b/tests/read.php index 933d844..eae1488 100644 --- a/tests/read.php +++ b/tests/read.php @@ -24,7 +24,7 @@ $configs = array( 'database' => 'anu10', ), 1 => array( - 'implementation' => 'Malete', + 'implementation' => 'BiblioIsis', 'database' => 'anu10', ), ); |