Thomas Gelf 2ef865392b ObjectsTableZone: no object type filter...
...and drop 'Templates' tab, as it is useless here

fixes #1125
2017-08-28 10:59:12 +02:00

14 lines
230 B
PHP

<?php
namespace Icinga\Module\Director\Web\Table;
use Zend_Db_Select as ZfSelect;
class ObjectsTableZone extends ObjectsTable
{
protected function applyObjectTypeFilter(ZfSelect $query)
{
return $query;
}
}