mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 00:34:05 +02:00
ipl: Components are now Widgets
This commit is contained in:
parent
9542c74404
commit
cda6970594
@ -12,7 +12,7 @@ use ipl\Html\FormattedString;
|
||||
use ipl\Html\Html;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Web\CompatController;
|
||||
use ipl\Web\Component\UnorderedList;
|
||||
use ipl\Web\Widget\UnorderedList;
|
||||
|
||||
class HosttemplateController extends CompatController
|
||||
{
|
||||
|
@ -12,7 +12,7 @@ use ipl\Html\FormattedString;
|
||||
use ipl\Html\Html;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Web\CompatController;
|
||||
use ipl\Web\Component\UnorderedList;
|
||||
use ipl\Web\Widget\UnorderedList;
|
||||
|
||||
class NotificationtemplateController extends CompatController
|
||||
{
|
||||
|
@ -13,7 +13,7 @@ use ipl\Html\FormattedString;
|
||||
use ipl\Html\Html;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Web\CompatController;
|
||||
use ipl\Web\Component\UnorderedList;
|
||||
use ipl\Web\Widget\UnorderedList;
|
||||
|
||||
class ServicetemplateController extends CompatController
|
||||
{
|
||||
|
@ -14,7 +14,7 @@ use ipl\Html\Html;
|
||||
use ipl\Html\HtmlString;
|
||||
use ipl\Html\Util;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\Tabs;
|
||||
use ipl\Web\Widget\Tabs;
|
||||
use Zend_Db_Select as ZfSelect;
|
||||
|
||||
abstract class Dashboard extends Html implements Countable
|
||||
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Web\ActionBar;
|
||||
|
||||
use ipl\Html\Link;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\ActionBar;
|
||||
use ipl\Web\Widget\ActionBar;
|
||||
use ipl\Web\Url;
|
||||
|
||||
class DirectorBaseActionBar extends ActionBar
|
||||
|
@ -19,7 +19,7 @@ use Icinga\Security\SecurityException;
|
||||
use Icinga\Web\Controller;
|
||||
use Icinga\Web\UrlParams;
|
||||
use Icinga\Web\Widget;
|
||||
use ipl\Web\Component\ControlsAndContent;
|
||||
use ipl\Web\Widget\ControlsAndContent;
|
||||
use ipl\Web\Controller\Extension\ControlsAndContentHelper;
|
||||
use ipl\Zf1\SimpleViewRenderer;
|
||||
|
||||
|
@ -4,7 +4,7 @@ namespace Icinga\Module\Director\Web\Table;
|
||||
|
||||
use Icinga\Module\Director\Db;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Web\Component\ControlsAndContent;
|
||||
use ipl\Web\Widget\ControlsAndContent;
|
||||
use ipl\Web\Table\ZfQueryBasedTable;
|
||||
use ipl\Web\Url;
|
||||
|
||||
|
@ -5,7 +5,7 @@ namespace Icinga\Module\Director\Web\Table;
|
||||
use Icinga\Module\Director\Db;
|
||||
use Icinga\Module\Director\Objects\IcingaObjectGroup;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Web\Component\ControlsAndContent;
|
||||
use ipl\Web\Widget\ControlsAndContent;
|
||||
use ipl\Web\Table\ZfQueryBasedTable;
|
||||
use ipl\Web\Url;
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
namespace Icinga\Module\Director\Web\Tabs;
|
||||
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\Tabs;
|
||||
use ipl\Web\Widget\Tabs;
|
||||
|
||||
class DataTabs extends Tabs
|
||||
{
|
||||
|
@ -5,7 +5,7 @@ namespace Icinga\Module\Director\Web\Tabs;
|
||||
use Icinga\Authentication\Auth;
|
||||
use Icinga\Module\Director\Objects\IcingaObject;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\Tabs;
|
||||
use ipl\Web\Widget\Tabs;
|
||||
|
||||
class ObjectTabs extends Tabs
|
||||
{
|
||||
|
@ -5,7 +5,7 @@ namespace Icinga\Module\Director\Web\Tabs;
|
||||
use Icinga\Authentication\Auth;
|
||||
use Icinga\Module\Director\Objects\IcingaObject;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\Tabs;
|
||||
use ipl\Web\Widget\Tabs;
|
||||
|
||||
class ObjectsTabs extends Tabs
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ use ipl\Html\BaseElement;
|
||||
use ipl\Html\Html;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\ControlsAndContent;
|
||||
use ipl\Web\Widget\ControlsAndContent;
|
||||
|
||||
class TemplateTreeRenderer extends BaseElement
|
||||
{
|
||||
|
2
library/vendor/ipl/Web/CompatController.php
vendored
2
library/vendor/ipl/Web/CompatController.php
vendored
@ -20,7 +20,7 @@ use Icinga\Web\Url as WebUrl;
|
||||
use Icinga\Web\Window;
|
||||
use ipl\Compat\Translator;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\ControlsAndContent;
|
||||
use ipl\Web\Widget\ControlsAndContent;
|
||||
use ipl\Web\Controller\Extension\ControlsAndContentHelper;
|
||||
use ipl\Zf1\SimpleViewRenderer;
|
||||
use Zend_Controller_Action;
|
||||
|
@ -3,9 +3,9 @@
|
||||
namespace ipl\Web\Controller\Extension;
|
||||
|
||||
use ipl\Html\Html;
|
||||
use ipl\Web\Component\Content;
|
||||
use ipl\Web\Component\Controls;
|
||||
use ipl\Web\Component\Tabs;
|
||||
use ipl\Web\Widget\Content;
|
||||
use ipl\Web\Widget\Controls;
|
||||
use ipl\Web\Widget\Tabs;
|
||||
use ipl\Web\Url;
|
||||
|
||||
trait ControlsAndContentHelper
|
||||
|
@ -12,10 +12,11 @@ use ipl\Html\Html;
|
||||
use ipl\Html\Link;
|
||||
use ipl\Html\Table;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Component\ControlsAndContent;
|
||||
use ipl\Web\Component\Paginator;
|
||||
use ipl\Web\Widget\ControlsAndContent;
|
||||
use ipl\Web\Widget\Paginator;
|
||||
use ipl\Web\Table\Extension\QuickSearch;
|
||||
use ipl\Web\Url;
|
||||
use Zend_Db_Exception as Expr;
|
||||
|
||||
abstract class ZfQueryBasedTable extends Table
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use ipl\Html\Attributes;
|
||||
use ipl\Html\BaseElement;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use ipl\Html\BaseElement;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use ipl\Html\Container;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use ipl\Html\Container;
|
||||
use ipl\Html\Html;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use ipl\Html\Html;
|
||||
use ipl\Web\Url;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use ipl\Html\Attributes;
|
||||
use ipl\Html\BaseElement;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
class OrderedList extends AbstractList
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use Icinga\Exception\ProgrammingError;
|
||||
use ipl\Data\Paginatable;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
use Icinga\Web\Widget\Tabs as WebTabs;
|
||||
use ipl\Html\ValidHtml;
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace ipl\Web\Component;
|
||||
namespace ipl\Web\Widget;
|
||||
|
||||
class UnorderedList extends AbstractList
|
||||
{
|
Loading…
x
Reference in New Issue
Block a user