| 1 | <?php |
||
| 15 | class UIDialog extends \Asymptix\ui\UIControl { |
||
| 16 | /** |
||
| 17 | * Default dialog panel HTML template. |
||
| 18 | */ |
||
| 19 | const DEFAULT_TEMPLATE = "/../templates/controls/ui_dialog.tpl.php"; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Text of the dialog message. |
||
| 23 | */ |
||
| 24 | protected $text = ""; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * List of dialog buttons. |
||
| 28 | * |
||
| 29 | * @var array<UIButton> |
||
| 30 | */ |
||
| 31 | protected $buttons = []; |
||
| 32 | |||
| 33 | public function __construct($attributesList = [], $buttons = [], $template = "") { |
||
| 41 | |||
| 42 | public function showButtons() { |
||
| 47 | } |
||
| 48 |