1
0
mirror of synced 2025-01-22 00:01:40 +03:00
doctrine2/playground/index.php

29 lines
855 B
PHP

<?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');
$user = $table->find(4);
$user->Phonenumber->add()->phonenumber = '555-5555';
$user->name = 'jonnwage';
$user->save();
print_r($user->toArray());
}