diff options
author | Silvio <silvio@devlet.com.br> | 2010-08-18 12:00:21 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-08-18 12:00:21 -0300 |
commit | 70539fe94d67cb4bdde7edce8a26873343d3c240 (patch) | |
tree | 2009cc33ccafa6a6f7c3d66523e6000cca10677d /tests/index.php | |
parent | f7b8ba01cb6cbf78d5e687bd17dc5c571fe6c85e (diff) | |
download | cinisis-70539fe94d67cb4bdde7edce8a26873343d3c240.tar.gz cinisis-70539fe94d67cb4bdde7edce8a26873343d3c240.tar.bz2 |
Moving tests to apps folder
Diffstat (limited to 'tests/index.php')
-rw-r--r-- | tests/index.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/index.php b/tests/index.php deleted file mode 100644 index b395b80..0000000 --- a/tests/index.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php -/** - * Cinisis - Isis db reading tool. - */ - -// Import requisites. -require_once '../index.php'; - -// Get entry number. -$entry = CinisisHttpHelper::get_numeric_arg('entry'); - -// Draw the document. -$display = new CinisisDisplayHelper('Isis Navigator'); -$display->form($display->form_input_text('entry', $entry)); - -// Get a db instance. -$isis = new CinisisDb(); - -// Setup database and entry number. -if ($isis->db) { - // Get the number of entries. - $entries = $isis->db->entries(); - - // Input sanitization. - if ($entries < $entry) { - $entry = 1; - } - - // Query database. - $result = $isis->db->read($entry); - $display->navbar($entry, $entries); - - // Format output. - echo "<pre>\n"; - echo "Showing entry $entry from $entries total entries.\n"; - echo "\n"; - print_r($result); - echo '</pre>'; -} - -$display->footer(); -?> |