1
0
mirror of synced 2025-01-29 19:41:45 +03:00

Removed test code.

This commit is contained in:
Jonathan.Wage 2007-09-24 22:29:52 +00:00
parent 13a1a6199c
commit 1d3cdd0ab6

View File

@ -1,27 +1,5 @@
<?php
require_once('playground.php');
$action = isset($_REQUEST['action']) ? $_REQUEST['action']:'client';
if ($action == 'server') {
require_once('connection.php');
require_once('models.php');
require_once('data.php');
$config = array('name' => 'Doctrine_Resource_Test_Server',
'models' => $tables);
$server = Doctrine_Resource_Server::getInstance($config);
$server->run($_REQUEST);
} else {
$config = array('url' => 'http://localhost/~jwage/doctrine_trunk/playground/index.php?action=server');
$client = Doctrine_Resource_Client::getInstance($config);
//$table = $client->getTable('User');
$query = new Doctrine_Resource_Query();
$users = $query->from('User u, u.Phonenumber p, u.Address a, u.Book b, b.Author a')->execute();
}
require_once('connection.php');
require_once('models.php');
require_once('data.php');