| 12345678910111213141516171819 |
- <?php
- class UI_AjaxContent implements UITagInterface {
- /**
- * @param string $tagName = 'p5:AjaxContent'
- * @param array $props
- * @param array $childrens
- *
- * @return string html code
- */
- static function h($tagName, $props = [], $childrens = []) {
- if (empty($props['url'])) throw new Exception("Missing url!");
- // if (empty($props['url'])) throw new Exception("Missing url!");
- return UI::h('div', [], "loading...");
- }
- }
|