From 4cfb71f1f5c302061a7188081a17f0366a2da963 Mon Sep 17 00:00:00 2001 From: Silvio Date: Thu, 19 Aug 2010 16:29:40 -0300 Subject: Adding IsisEntryIterator --- apps/field.php | 4 ++-- apps/repetition.php | 4 ++-- apps/subfield.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'apps') diff --git a/apps/field.php b/apps/field.php index 8d78f89..193d351 100644 --- a/apps/field.php +++ b/apps/field.php @@ -26,12 +26,12 @@ if ($isis) { list($entry, $result) = $isis->nextField($entry, $field); // Navigation bar. - $display->navbar($entry, $isis->entries, $repetition, '&fid='. $fid); + $display->navbar($entry, $isis->entries, 'field.php', '&fid='. $fid); // Format output. echo "
\n";
   echo "Selected field: $fid: ". $field['name'] ."\n";
-  echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
+  echo "Showing entry ". $display->entry_link($entry) ." from ". $isis->entries ." total entries.\n";
   echo "Repetitions found: ". count($result[$field['name']]) .".\n";
   echo "\n";
   print_r($result[$field['name']]);
diff --git a/apps/repetition.php b/apps/repetition.php
index 3fce88f..0e2718c 100644
--- a/apps/repetition.php
+++ b/apps/repetition.php
@@ -26,12 +26,12 @@ if ($isis) {
   list($entry, $result) = $isis->nextRepetition($entry, $field);
 
   // Navigation bar.
-  $display->navbar($entry, $isis->entries, $repetition, '&fid='. $fid);
+  $display->navbar($entry, $isis->entries, 'repetition.php', '&fid='. $fid);
 
   // Format output.
   echo "
\n";
   echo "Selected field: $fid: ". $field['name'] ."\n";
-  echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
+  echo "Showing entry ". $display->entry_link($entry) ." from ". $isis->entries ." total entries.\n";
   echo "Repetitions found: ". count($result[$field['name']]) .".\n";
   echo "\n";
   print_r($result[$field['name']]);
diff --git a/apps/subfield.php b/apps/subfield.php
index 352a9f5..ca7557e 100644
--- a/apps/subfield.php
+++ b/apps/subfield.php
@@ -29,13 +29,13 @@ if ($isis) {
   list($entry, $result) = $isis->nextSubfield($entry, $field, $subfield);
 
   // Navigation bar.
-  $display->navbar($entry, $isis->entries, $repetition, '&fid='. $fid . '&sid='. $sid);
+  $display->navbar($entry, $isis->entries, 'subfield.php', '&fid='. $fid . '&sid='. $sid);
 
   // Format output.
   echo "
\n";
   echo "Selected field: $fid: ". $field['name'] .".\n";
   echo "Selected subfield: $sid: $subfield.\n";
-  echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
+  echo "Showing entry ". $display->entry_link($entry) ." from ". $isis->entries ." total entries.\n";
   echo "Repetitions found: ". count($result[$field['name']]) .".\n";
   echo "\n";
   print_r($result[$field['name']]);
-- 
cgit v1.2.3