diff options
| author | Simon | 2011-03-02 17:36:39 +0100 |
|---|---|---|
| committer | Simon | 2011-03-02 17:36:39 +0100 |
| commit | fb85535fa927ad70a63fbeafd008325ca2fa749e (patch) | |
| tree | 3af8282740c036478ca26059851cbcb8ffbf8713 /application/views/scripts | |
| parent | Neue Filter hinzufügen (diff) | |
| download | pbs2-fb85535fa927ad70a63fbeafd008325ca2fa749e.tar.gz pbs2-fb85535fa927ad70a63fbeafd008325ca2fa749e.tar.xz pbs2-fb85535fa927ad70a63fbeafd008325ca2fa749e.zip | |
Änderungen an den Filtern
Diffstat (limited to 'application/views/scripts')
| -rw-r--r-- | application/views/scripts/filter/index.phtml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/views/scripts/filter/index.phtml b/application/views/scripts/filter/index.phtml index 0f9b51e..33043dc 100644 --- a/application/views/scripts/filter/index.phtml +++ b/application/views/scripts/filter/index.phtml @@ -13,10 +13,20 @@ <table border=1> <tr> <th>filterid</th> + <th>filterID</th> </tr> <?php foreach ($this->filters as $filter): ?> <tr> + <td><?php echo $this->escape($filter->getID()) ?></td> <td><?php echo $this->escape($filter->title) ?></td> + <td><a href="<?php echo $this->url( + array( + 'controller' => 'filter', + 'action' => 'editfilter', + 'filterID' => $filter->getID() + ), + 'default', + true) ?>">edit filter</a></td> </tr> <?php endforeach ?> |
