From ad8d8568b683e6935bec64abe88f79bf31706dd7 Mon Sep 17 00:00:00 2001 From: Silvio Date: Wed, 18 Aug 2010 15:22:43 -0300 Subject: Adding audit and finder classes, cleanup and organization --- classes/SchemaDb.php | 96 ---------------------------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 classes/SchemaDb.php (limited to 'classes/SchemaDb.php') diff --git a/classes/SchemaDb.php b/classes/SchemaDb.php deleted file mode 100644 index db9ca30..0000000 --- a/classes/SchemaDb.php +++ /dev/null @@ -1,96 +0,0 @@ - array( - 'name' => 'dbname', - ), - 'fields' => array( - ), - ); - - return $schema; - } - - /** - * Return the optional database config. - * - * @return - * Array with optional config. - */ - public function optional() { - $schema = array( - 'db' => array( - 'charset' => 'charset', - ), - ); - - return $schema; - } - - /** - * Return an example database schema. - * - * @see IsisDb::example() - */ - public function example() { - $required = SchemaDb::required(); - $optional = SchemaDb::optional(); - $schema = array( - 'db' => array( - 'charset' => 'charset', - ), - 'fields' => array( - 1 => array( - 'name' => 'field_name', - 'size' => 1000, - 'format' => 'numeric', - 'repeat' => TRUE, - 'subfields' => array( - 'a' => 'test', - 'b' => 'test2', - ), - ), - ), - ); - - return array_merge_recursive($required, $optional, $schema); - } - - /** - * Recursively check for required fields in a database schema. - * - * @see IsisDb::check() - */ - static function check($schema, $section = NULL) { - if ($section === NULL) { - $section = SchemaDb::required(); - } - - foreach ($section as $key => $value) { - if (!isset($schema[$key])) { - throw new Exception('Undefined required parameter '. $key .' on database configuration.'); - return FALSE; - } - - if (is_array($value)) { - if (SchemaDb::check($schema[$key], $section[$key]) == FALSE) { - return FALSE; - } - } - } - - return $schema; - } -} -- cgit v1.2.3