summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorSimon2011-04-06 20:33:32 +0200
committerSimon2011-04-06 20:33:32 +0200
commitc9c90b0342178054bc4bd3f5c69e9eefa6627b2e (patch)
treebd38a9156c7df495df44c02dfa36d313362fe6fd /application
parentneues Design eingebettet, bei Role, Person &Group muss noch etwas überlegt w... (diff)
downloadpbs2-c9c90b0342178054bc4bd3f5c69e9eefa6627b2e.tar.gz
pbs2-c9c90b0342178054bc4bd3f5c69e9eefa6627b2e.tar.xz
pbs2-c9c90b0342178054bc4bd3f5c69e9eefa6627b2e.zip
neues Design eingebettet, bei Role, Person &Group muss noch etwas überlegt werden
Diffstat (limited to 'application')
-rw-r--r--application/modules/user/views/scripts/filter/index.phtml124
1 files changed, 0 insertions, 124 deletions
diff --git a/application/modules/user/views/scripts/filter/index.phtml b/application/modules/user/views/scripts/filter/index.phtml
index 97a3077..c76eae8 100644
--- a/application/modules/user/views/scripts/filter/index.phtml
+++ b/application/modules/user/views/scripts/filter/index.phtml
@@ -129,127 +129,3 @@ $(document).ready(function(){
}
});
</script>
-
-<!--
-<?php if ($this->filters): ?>
- <table>
- <tr>
- <th>ID <span class='code'>filterID</span></th>
- <th>Title <span class='code'>title</span></th>
- <th>Description <span class='code'>description</span></th>
- <th>Priority <span class='code'>priority</span></th>
- <th>TargetBootMenu <span class='code'>bootmenuID</span></th>
- <th>Created <span class='code'>created</span></th>
- <th colspan=3>Actions</th>
- </tr>
- <?php foreach ($this->filters as $filter): ?>
- <tr class='entry'>
- <td><?php echo $this->escape($filter->getID()) ?></td>
- <td><?php echo $this->escape($filter->title) ?></td>
- <td><?php echo $this->escape($filter->Description) ?></td>
- <td><?php echo $this->escape($filter->priority) ?></td>
- <td><?php echo $this->escape($filter->bootmenuID) ?></td>
- <td><?php echo $this->escape($filter->created) ?></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'module' => 'user',
- 'controller' => 'filter',
- 'action' => 'editfilter',
- 'filterID' => $filter->getID(),
- 'page' => $this->page
- ),
- 'default',
- true) ?>"><img src='/media/img/edit.png' alt='Edit Filter'/></a></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'module' => 'user',
- 'controller' => 'filter',
- 'action' => 'removefilter',
- 'filterID' => $filter->getID(),
- 'page' => $this->page
- ),
- 'default',
- true) ?>"><img src='/media/img/delete.png' alt='Delete Filter'/></a></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'module' => 'user',
- 'controller' => 'filter',
- 'action' => 'addfilterentry',
- 'filterID' => $filter->getID(),
- 'page' => $this->page
- ),
- 'default',
- true) ?>"><img src='/media/img/add.png' alt='Add Filterentry'/></a></td>
- </tr>
- <?php
- $fe = new Application_Model_FilterEntriesMapper();
- # print_a($erg = $fe->findBy('filterID',$filter->getID()));
- $erg = $fe->findBy(array('filterID' => $filter->getID()),true);
- ?>
- <?php if (count($erg)>0): ?>
- <tr class=detail>
- <td class=arrowtop>↳</td>
- <td colspan=8>
- <?php
-
- ?>
- <table>
- <tr>
- <th>Filtertype</th>
- <th>Value</th>
- <th>Value2</th>
- <th colspan=2>Actions</th>
- </tr>
- <?php foreach ($erg as $filterentry): ?>
-
- <tr>
- <td><?php
-
- $filter2 = new Application_Model_FilterTypeMapper();
- $erg = new Application_Model_FilterType();
- $filter2->find($filterentry['filtertypeID'],$erg);
- //name zur ID finden
- echo "[".$filterentry['filtertypeID']."] ";
- echo $erg->getFiltertypename();
-
-
- ?></td>
- <td><?php echo $filterentry['filtervalue'];?></td>
- <td><?php echo $filterentry['filtervalue2'];?></td>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'module' => 'user',
- 'controller' => 'filter',
- 'action' => 'editfilterentry',
- 'filterentriesID' => $filterentry['filterentriesID'],
- 'page' => $this->page
- ),
- 'default',
- true) ?>"><img src='/media/img/edit.png' alt='Edit Filterentry'/></a>
- <td class='action'><a href="<?php echo $this->url(
- array(
- 'module' => 'user',
- 'controller' => 'filter',
- 'action' => 'removefilterentry',
- 'filterentriesID' => $filterentry['filterentriesID'],
- 'page' => $this->page
- ),
- 'default',
- true) ?>"><img src='/media/img/delete.png' alt='Delete Filterentry'/></a>
- </tr>
-
- <?php endforeach ?>
- </table>
- </td>
- </tr>
- <?php endif;?>
- <?php endforeach ?>
- </table>
- <?php echo $this->pagination; ?>
-
-<?php else: ?>
-
- <p>There are no filters to display.</p>
-
-<?php endif;?>
--->