diff options
author | ctrlaltca <> | 2012-07-12 11:21:01 +0000 |
---|---|---|
committer | ctrlaltca <> | 2012-07-12 11:21:01 +0000 |
commit | 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 (patch) | |
tree | e08bf04f0823650a231227ac3499121270172a23 /tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php | |
parent | 3e4e6e66aeb3f8fea4e1eb4237498ef9d2358f63 (diff) |
standardize the use of unix eol; use svn properties to enforce native eol
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php b/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php index 022f6dad..8a1ba198 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php +++ b/tests/FunctionalTests/active-controls/protected/pages/PopulateActiveList.php @@ -1,34 +1,34 @@ -<?php
-
-class PopulateActiveList extends TPage
-{
- public function populate_list1($sender, $param)
- {
- $data = array('Hello', 'World', 'Prado');
- $this->list1->Items->clear();
- for($i = 0,$k=count($data); $i<$k; $i++)
- {
- $item = new TListItem($data[$i], $i);
- $this->list1->Items[] = $item;
- }
- }
-
- public function populate_list2($sender, $param)
- {
- $data = array('Hello', 'World', 'Prado');
- $this->list2->Items->clear();
- for($i = 0,$k=count($data); $i<$k; $i++)
- {
- $item = new TListItem($data[$i], $i);
- $this->list2->Items[] = $item;
- }
- }
-
- public function list_changed($sender, $param)
- {
- $text = $sender->SelectedItem ? $sender->SelectedItem->Text : 'Not selected';
- $this->label1->Text = $sender->ID . ': '.$text;
- }
-}
-
+<?php + +class PopulateActiveList extends TPage +{ + public function populate_list1($sender, $param) + { + $data = array('Hello', 'World', 'Prado'); + $this->list1->Items->clear(); + for($i = 0,$k=count($data); $i<$k; $i++) + { + $item = new TListItem($data[$i], $i); + $this->list1->Items[] = $item; + } + } + + public function populate_list2($sender, $param) + { + $data = array('Hello', 'World', 'Prado'); + $this->list2->Items->clear(); + for($i = 0,$k=count($data); $i<$k; $i++) + { + $item = new TListItem($data[$i], $i); + $this->list2->Items[] = $item; + } + } + + public function list_changed($sender, $param) + { + $text = $sender->SelectedItem ? $sender->SelectedItem->Text : 'Not selected'; + $this->label1->Text = $sender->ID . ': '.$text; + } +} + ?>
\ No newline at end of file |