QuickTable: every QuickTable is ValidHtml
This commit is contained in:
parent
1a7a83e28b
commit
efe6cfbbaa
|
@ -4,9 +4,8 @@ namespace Icinga\Module\Director\Tables;
|
|||
|
||||
use Icinga\Module\Director\Objects\IcingaCommand;
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
use ipl\Html\ValidHtml;
|
||||
|
||||
class IcingaCommandArgumentTable extends QuickTable implements ValidHtml
|
||||
class IcingaCommandArgumentTable extends QuickTable
|
||||
{
|
||||
protected $commandObject;
|
||||
|
||||
|
|
|
@ -6,9 +6,8 @@ use Icinga\Data\DataArray\ArrayDatasource;
|
|||
use Icinga\Module\Director\CustomVariable\CustomVariableDictionary;
|
||||
use Icinga\Module\Director\Objects\IcingaHost;
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
use ipl\Html\ValidHtml;
|
||||
|
||||
class IcingaHostAppliedForServiceTable extends QuickTable implements ValidHtml
|
||||
class IcingaHostAppliedForServiceTable extends QuickTable
|
||||
{
|
||||
protected $title;
|
||||
|
||||
|
|
|
@ -7,9 +7,8 @@ use Icinga\Data\Filter\Filter;
|
|||
use Icinga\Module\Director\Objects\HostApplyMatches;
|
||||
use Icinga\Module\Director\Objects\IcingaHost;
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
use ipl\Html\ValidHtml;
|
||||
|
||||
class IcingaHostAppliedServicesTable extends QuickTable implements ValidHtml
|
||||
class IcingaHostAppliedServicesTable extends QuickTable
|
||||
{
|
||||
protected $title;
|
||||
|
||||
|
|
|
@ -4,9 +4,8 @@ namespace Icinga\Module\Director\Tables;
|
|||
|
||||
use Icinga\Module\Director\Objects\IcingaHost;
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
use ipl\Html\ValidHtml;
|
||||
|
||||
class IcingaHostServiceTable extends QuickTable implements ValidHtml
|
||||
class IcingaHostServiceTable extends QuickTable
|
||||
{
|
||||
protected $title;
|
||||
|
||||
|
|
|
@ -4,9 +4,8 @@ namespace Icinga\Module\Director\Tables;
|
|||
|
||||
use Icinga\Module\Director\Objects\IcingaServiceSet;
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
use ipl\Html\ValidHtml;
|
||||
|
||||
class IcingaServiceSetHostTable extends QuickTable implements ValidHtml
|
||||
class IcingaServiceSetHostTable extends QuickTable
|
||||
{
|
||||
protected $set;
|
||||
|
||||
|
|
|
@ -5,9 +5,8 @@ namespace Icinga\Module\Director\Tables;
|
|||
use Icinga\Module\Director\Objects\IcingaHost;
|
||||
use Icinga\Module\Director\Objects\IcingaServiceSet;
|
||||
use Icinga\Module\Director\Web\Table\QuickTable;
|
||||
use ipl\Html\ValidHtml;
|
||||
|
||||
class IcingaServiceSetServiceTable extends QuickTable implements ValidHtml
|
||||
class IcingaServiceSetServiceTable extends QuickTable
|
||||
{
|
||||
protected $set;
|
||||
|
||||
|
|
|
@ -19,10 +19,11 @@ use Icinga\Web\Url;
|
|||
use Icinga\Web\View;
|
||||
use Icinga\Web\Widget;
|
||||
use Icinga\Web\Widget\Paginator;
|
||||
use ipl\Html\ValidHtml;
|
||||
use stdClass;
|
||||
use Zend_Db_Select as ZfDbSelect;
|
||||
|
||||
abstract class QuickTable implements Paginatable
|
||||
abstract class QuickTable implements Paginatable, ValidHtml
|
||||
{
|
||||
protected $view;
|
||||
|
||||
|
|
Loading…
Reference in New Issue