diff options
author | xue <> | 2006-06-28 18:23:52 +0000 |
---|---|---|
committer | xue <> | 2006-06-28 18:23:52 +0000 |
commit | 9afa1445890254e867dd172a36f42484aec8916b (patch) | |
tree | 426e35c0dd556d3bb194a30c2f80564dda55f191 /tests/FunctionalTests/tickets/protected/pages/Ticket239.php | |
parent | aac749d4fbfdf3508d97f7dfe4d7c2c03597edbb (diff) |
merge from 3.0 branch till 1208.
Diffstat (limited to 'tests/FunctionalTests/tickets/protected/pages/Ticket239.php')
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket239.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket239.php b/tests/FunctionalTests/tickets/protected/pages/Ticket239.php new file mode 100644 index 00000000..a40c94b5 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket239.php @@ -0,0 +1,16 @@ +<?php
+
+class Ticket239 extends TPage
+{
+ public function activateView($sender,$param)
+ {
+ $this->Result->Text.=$sender->ID." is activated. ";
+ }
+
+ public function deactivateView($sender,$param)
+ {
+ $this->Result->Text.=$sender->ID." is deactivated. ";
+ }
+}
+
+?>
\ No newline at end of file |