27 lines
801 B
PHP
27 lines
801 B
PHP
<?php
|
|
require_once('playground.php');
|
|
require_once('connection.php');
|
|
require_once('models.php');
|
|
require_once('data.php');
|
|
|
|
$action = isset($_REQUEST['action']) ? $_REQUEST['action']:'client';
|
|
|
|
if ($action == 'server') {
|
|
$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);
|
|
|
|
$query = new Doctrine_Resource_Query();
|
|
$query->from('User u, u.Email e, u.Phonenumber p');
|
|
|
|
$users = $query->execute();
|
|
|
|
print_r($users->toArray());
|
|
} |