From 1d960150de785261da282e1505360e97ee144493 Mon Sep 17 00:00:00 2001 From: Silvio Date: Tue, 30 Mar 2010 12:01:20 -0300 Subject: Adding PhpIsis implementation of IsisDb --- isis.php | 117 --------------------------------------------------------------- 1 file changed, 117 deletions(-) delete mode 100644 isis.php (limited to 'isis.php') diff --git a/isis.php b/isis.php deleted file mode 100644 index 4dd0ee2..0000000 --- a/isis.php +++ /dev/null @@ -1,117 +0,0 @@ -format = $schema; - - // Setup $fdt used by malete. - foreach ($schema['fields'] as $field => $info) { - $this->fdt[$field] = $info['name']; - } - - // Open a database connection. - $this->db = new Isis_Db($this->fdt, $schema['db']['name'], new Isis_Server()); - if (!$this->db->srv->sock) { - return FALSE; - } - } - - public function fields($id = NULL) { - } - - public function subfields($id = NULL) { - } - - public function read($id) { - if (!is_numeric($id)) { - return FALSE; - } - $results = $this->db->read($id); - return $this->tag($results); - } - - public function rows() { - } - - /** - * Schema format example. - */ - public function default_schema() { - $schema = array( - 'db' => array( - 'name' => 'dbname', - ), - 'fields' => array( - 1 => array( - 'name' => 'field_name', - 'size' => 1000, - 'format' => 'numeric', - 'repeat' => TRUE, - 'subfields' => array( - 'a' => 'test', - 'b' => 'test2', - ), - ), - ), - ); - - return $schema; - } - - // Tag results of a db query. - function tag($results) { - foreach ($results->val as $key => $value) { - $field = $results->tag[$key]; - $name = $this->format['fields'][$field]['name']; - - // Handles field repetition. - if ($this->format['fields'][$field]['repeat']) { - $data[$name][] = $value; - } - else { - $data[$name] = $value; - } - } - return $data; - } -} - -/** - * PHP-Isis implementation of IsisDb. - */ -class PhpIsis implements IsisDb { -} -- cgit v1.2.3