diff options
author | wei <> | 2006-07-18 23:39:13 +0000 |
---|---|---|
committer | wei <> | 2006-07-18 23:39:13 +0000 |
commit | 2fbc53d1f5d9e0a000717642d02558453bc610a8 (patch) | |
tree | 0ab6b464cf6b319f862e075ddd442558971c5aa6 /demos/time-tracker/protected/pages/TimeTracker/UserList.php | |
parent | 319df8f534520c8c926d0cdaa1f5577c7bd8a909 (diff) |
Add more tests and business code for time-tracker
Diffstat (limited to 'demos/time-tracker/protected/pages/TimeTracker/UserList.php')
-rw-r--r-- | demos/time-tracker/protected/pages/TimeTracker/UserList.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/demos/time-tracker/protected/pages/TimeTracker/UserList.php b/demos/time-tracker/protected/pages/TimeTracker/UserList.php new file mode 100644 index 00000000..175a731a --- /dev/null +++ b/demos/time-tracker/protected/pages/TimeTracker/UserList.php @@ -0,0 +1,34 @@ +<?php
+/**
+ * UserList page class file.
+ *
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005-2006 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $18/07/2006: $
+ * @package Demos
+ */
+
+/**
+ * List all users in a repeater.
+ *
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @version $Revision: $ $18/07/2006: $
+ * @package Demos
+ * @since 3.1
+ */
+class UserList extends TPage
+{
+ /**
+ * Load all the users and display them in a repeater.
+ */
+ function onLoad($param)
+ {
+ $userDao = $this->Application->Modules['daos']->getDao('UserDao');
+ $this->list->DataSource = $userDao->getAllUsers();
+ $this->list->dataBind();
+ }
+}
+
+?>
\ No newline at end of file |