search uses pagination

This commit is contained in:
naomiaro 2011-01-03 11:47:21 -05:00
parent c24a152eba
commit 75cd410ba4
9 changed files with 136 additions and 64 deletions

View file

@ -20,3 +20,15 @@
}
?>
<?php
echo "page: " . $this->page;
echo "curr: " . $this->curr;
echo $this->paginationControl($this->paginator,
'Sliding',
'library/paginator.phtml');
?>

View file

@ -0,0 +1,44 @@
<?php if ($this->pageCount): ?>
<div class="paginationControl">
<?php echo $this->firstItemNumber; ?> - <?php echo $this->lastItemNumber; ?>
of <?php echo $this->totalItemCount; ?>
<!-- First page link -->
<?php if (isset($this->previous)): ?>
<a href="<?php echo $this->url(array('page' => $this->first)); ?>">
First
</a> |
<?php else: ?>
<span class="disabled">First</span> |
<?php endif; ?>
<!-- Previous page link -->
<?php if (isset($this->previous)): ?>
<a href="<?php echo $this->url(array('page' => $this->previous)); ?>">
&lt; Previous
</a> |
<?php else: ?>
<span class="disabled">&lt; Previous</span> |
<?php endif; ?>
<!-- Next page link -->
<?php if (isset($this->next)): ?>
<a href="<?php echo $this->url(array('page' => $this->next)); ?>">
Next &gt;
</a> |
<?php else: ?>
<span class="disabled">Next &gt;</span> |
<?php endif; ?>
<!-- Last page link -->
<?php if (isset($this->next)): ?>
<a href="<?php echo $this->url(array('page' => $this->last)); ?>">
Last
</a>
<?php else: ?>
<span class="disabled">Last</span>
<?php endif; ?>
</div>
<?php endif; ?>

View file

@ -1,2 +1,3 @@
<?php
echo $this->partialLoop('library/libraryTablePartial.phtml', $this->files);
echo $this->partialLoop('library/libraryTablePartial.phtml', $this->files);

View file

@ -1,6 +1,6 @@
<?php
$this->form->setAction($this->url());
echo $this->form;
?>
<span id="search_add">Add</span>
<span id="search_submit">Submit</span>