diff options
author | Silvio <silvio@devlet.com.br> | 2010-07-23 14:11:20 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-07-23 14:11:20 -0300 |
commit | c33739f87ebf10e494f3c4d16ef4d53876f044f2 (patch) | |
tree | b9118be218bf8e971933c7235a675afacd56e1e2 /classes/IsisConnector.php | |
parent | 746f86a86cb03527ba1d4e695314d7654ecd0766 (diff) | |
download | cinisis-c33739f87ebf10e494f3c4d16ef4d53876f044f2.tar.gz cinisis-c33739f87ebf10e494f3c4d16ef4d53876f044f2.tar.bz2 |
Adding README and naming changes
Diffstat (limited to 'classes/IsisConnector.php')
-rw-r--r-- | classes/IsisConnector.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/classes/IsisConnector.php b/classes/IsisConnector.php index fe8cd75..c0fd3fc 100644 --- a/classes/IsisConnector.php +++ b/classes/IsisConnector.php @@ -12,9 +12,9 @@ class IsisConnector { $this->isis = new CinisisDb(); if ($this->isis->db) { - $this->rows = $this->isis->db->rows(); - $this->format = $this->isis->db->format; - $this->fields = $this->format['fields']; + $this->entries = $this->isis->db->entries(); + $this->format = $this->isis->db->format; + $this->fields = $this->format['fields']; } else { return FALSE; @@ -24,15 +24,15 @@ class IsisConnector { /** * Alias to $isis->db->read(). * - * @param $row + * @param $entry * Row number. * * @return * Resulting data. */ - public function read($row) { + public function read($entry) { // Always store the last result. - $this->result = $this->isis->db->read($row); + $this->result = $this->isis->db->read($entry); // Return the result. return $this->result; |