diff options
author | Zach Copley <zach@status.net> | 2009-11-18 18:25:36 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-18 18:25:36 -0800 |
commit | cf7188a4586c5ce5b539229035866cf494413a76 (patch) | |
tree | f8bc8f22fcd3883994e8cbb2b042eb0a0cf654df /lib/form.php | |
parent | 8f2db3820f6ab2c8881521c0adc9a6427b5ea86b (diff) |
Design admin panel mostly done.
Diffstat (limited to 'lib/form.php')
-rw-r--r-- | lib/form.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/form.php b/lib/form.php index 868c986b9..f6501dc6d 100644 --- a/lib/form.php +++ b/lib/form.php @@ -181,4 +181,14 @@ class Form extends Widget { return 'form'; } + + function li() + { + $this->out->elementStart('li'); + } + + function unli() + { + $this->out->elementEnd('li'); + } } |