source: Dev/branches/rest-dojo-ui/client/dojo/tests/resources/testClass.php @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

  • 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.