diff options
author | tof <> | 2007-09-29 14:44:29 +0000 |
---|---|---|
committer | tof <> | 2007-09-29 14:44:29 +0000 |
commit | dc203fc3b1ad6a974e61a89596a938d249def131 (patch) | |
tree | 3d4d7c5a25377475670f497d4af19bc22b7a1685 /tests/FunctionalTests/tickets/protected/pages/Ticket703/Ticket703.php | |
parent | f181b662c6852bc7bc28df6d456dd40bab46b9c5 (diff) |
Make a testcase for Ticket #703
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket703/Ticket703.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket703/Ticket703.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket703/Ticket703.php b/tests/FunctionalTests/tickets/protected/pages/Ticket703/Ticket703.php new file mode 100644 index 00000000..1b5b638a --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket703/Ticket703.php @@ -0,0 +1,31 @@ +<?php
+
+class Ticket703 extends TPage {
+ public function onLoad ($param)
+ {
+ parent::onLoad($param);
+ if (!$this->isPostBack && !$this->isCallback)
+ {
+ $this->refreshLog();
+ }
+ }
+
+ public function refreshLog ()
+ {
+ $this->logBox->Text=file_get_contents(prado::getPathOfNameSpace('Ticket703.Logs.LogFile', '.txt'));
+ }
+
+ public function clearLog ($sender, $param)
+ {
+ $file=prado::getPathOfNameSpace('Ticket703.Logs.LogFile', '.txt');
+ $f=fopen($file,"w");
+ fclose($f);
+ $this->refreshLog();
+ }
+
+ public function addLog($sender,$param)
+ {
+ prado::log($this->logMessage->getText(), TLogger::DEBUG, "Tickets");
+ }
+}
+?>
\ No newline at end of file |