]> git.pond.sub.org Git - eow/blob - static/dojo-release-1.1.1/dojo/tests/resources/testClass.php
add Dojo 1.1.1
[eow] / static / dojo-release-1.1.1 / dojo / tests / resources / testClass.php
1 <?php
2 class testClass {
3
4         function myecho ($somestring) {
5                 return "<P>" . $somestring . "</P>";
6         }
7
8         function contentB () {
9                 return "<P>Content B</P>";
10         }
11
12         function contentC () {
13                 return "<P>Content C</P>";
14         }
15
16         function add($x,$y) {
17                 return $x + $y;
18         }
19 }
20 ?>