We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6601e73 commit 8b21655Copy full SHA for 8b21655
Examples/liveage.php
@@ -0,0 +1,23 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
5
+/**
6
+ * This file is part of the EaseHtmlWidgets package
7
+ *
8
+ * https://github.com/VitexSoftware/php-vitexsoftware-ease-html-widgets
9
10
+ * (c) Vítězslav Dvořák <http://vitexsoftware.com>
11
12
+ * For the full copyright and license information, please view the LICENSE
13
+ * file that was distributed with this source code.
14
+ */
15
16
+require_once '../vendor/autoload.php';
17
18
+$oPage = new \Ease\WebPage();
19
20
+$oPage->addItem(new \Ease\Html\Widgets\Toggle('tog1', 'a'));
21
+$oPage->addItem(new \Ease\Html\Widgets\ToggleRounded('tog2', 'b'));
22
23
+echo $oPage;
0 commit comments