Changeset 618
- Timestamp:
- 04/24/07 18:38:18 (2 years ago)
- Files:
-
- trunk/examples/foreignClassLoaders/README (added)
- trunk/examples/foreignClassLoaders/index.php (moved) (moved from trunk/examples/foreignClassLoaders/xp.php) (3 diffs)
- trunk/examples/index.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/foreignClassLoaders/index.php
r617 r618 1 1 <?php 2 echo 'The PHP code:<br />'; 3 echo highlight_file(__FILE__); 4 2 5 require '../../config/php/config.php'; 3 6 require stubConfig::getLibPath() . DIRECTORY_SEPARATOR . 'stubbles.php'; … … 12 15 public static function main() 13 16 { 17 echo '<br><br>The result:<br>'; 14 18 echo '<pre>'; 15 19 $string = new String('foo'); … … 20 24 } 21 25 Bootstrap::main(); 22 echo 'The PHP code:<br />';23 echo highlight_file(__FILE__);24 26 ?> trunk/examples/index.html
r605 r618 8 8 <ul> 9 9 <li><a href="json-rpc">Out-of-the-box AJAX with the JSON-RPC processor</a></li> 10 <li><a href="foreignClassLoaders">Loading classes from foreign resources with the Stubbles class loader</a></li> 10 11 </ul> 11 12 </body>
