source: Dev/trunk/src/client/dojo/tests/resources/testClass.php

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

  • Property svn:executable set to *
File size: 264 bytes
Line 
1<?php
2class 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?>
Note: See TracBrowser for help on using the repository browser.