aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojo/tests/resources/testClass.php
blob: acf7f16fdfca7e6b408fbfe37f388774a43f1123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
class testClass {

	function myecho ($somestring) {
		return "<P>" . $somestring . "</P>";
	}

	function contentB () {
		return "<P>Content B</P>";
	}

	function contentC () {
		return "<P>Content C</P>";
	}

	function add($x,$y) {
		return $x + $y;
	}
}
?>