2006-10-09 22:00:14 +04:00
|
|
|
<?php
|
2006-12-28 00:20:26 +03:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
|
2006-10-09 22:00:14 +04:00
|
|
|
/**
|
2006-12-28 00:20:26 +03:00
|
|
|
* Doctrine_Validator_TestCase
|
2006-10-09 22:00:14 +04:00
|
|
|
* TestCase for Doctrine's validation component.
|
|
|
|
*
|
|
|
|
* @todo More tests to cover the full interface of Doctrine_Validator_ErrorStack.
|
2006-12-28 00:20:26 +03:00
|
|
|
*
|
|
|
|
* @package Doctrine
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @category Object Relational Mapping
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
2006-10-09 22:00:14 +04:00
|
|
|
*/
|
2006-12-28 00:20:26 +03:00
|
|
|
class Doctrine_Validator_TestCase extends Doctrine_UnitTestCase {
|
2006-10-09 22:00:14 +04:00
|
|
|
public function prepareTables() {
|
2007-03-28 17:31:54 +04:00
|
|
|
$this->tables[] = 'ValidatorTest';
|
|
|
|
$this->tables[] = 'ValidatorTest_Person';
|
|
|
|
$this->tables[] = 'ValidatorTest_FootballPlayer';
|
2006-10-09 22:00:14 +04:00
|
|
|
parent::prepareTables();
|
|
|
|
}
|
2007-04-12 17:37:45 +04:00
|
|
|
|
2006-10-09 22:00:14 +04:00
|
|
|
/**
|
|
|
|
* Tests correct type detection.
|
|
|
|
*/
|
|
|
|
public function testIsValidType() {
|
|
|
|
$var = "123";
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = 123;
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = 123.12;
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = '123.12';
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = '';
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = null;
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = 'str';
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = array();
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
|
|
|
|
$var = new Exception();
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"string"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"integer"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"float"));
|
|
|
|
$this->assertFalse(Doctrine_Validator::isValidType($var,"array"));
|
|
|
|
$this->assertTrue(Doctrine_Validator::isValidType($var,"object"));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests Doctrine_Validator::validateRecord()
|
|
|
|
*/
|
|
|
|
public function testValidate2() {
|
|
|
|
$test = new ValidatorTest();
|
|
|
|
$test->mymixed = "message";
|
|
|
|
$test->myrange = 1;
|
|
|
|
$test->myregexp = '123a';
|
|
|
|
|
|
|
|
$validator = new Doctrine_Validator();
|
|
|
|
$validator->validateRecord($test);
|
|
|
|
|
2007-01-21 21:31:51 +03:00
|
|
|
$stack = $test->errorStack();
|
2006-10-09 22:00:14 +04:00
|
|
|
|
|
|
|
$this->assertTrue($stack instanceof Doctrine_Validator_ErrorStack);
|
|
|
|
|
2006-10-10 20:15:43 +04:00
|
|
|
$this->assertTrue(in_array('notnull', $stack['mystring']));
|
|
|
|
$this->assertTrue(in_array('notblank', $stack['myemail2']));
|
|
|
|
$this->assertTrue(in_array('range', $stack['myrange']));
|
|
|
|
$this->assertTrue(in_array('regexp', $stack['myregexp']));
|
2006-10-09 22:00:14 +04:00
|
|
|
$test->mystring = 'str';
|
|
|
|
|
|
|
|
|
|
|
|
$test->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests Doctrine_Validator::validateRecord()
|
|
|
|
*/
|
|
|
|
public function testValidate() {
|
2007-01-21 21:31:51 +03:00
|
|
|
$user = $this->connection->getTable('User')->find(4);
|
2006-10-09 22:00:14 +04:00
|
|
|
|
2007-01-21 21:31:51 +03:00
|
|
|
$set = array('password' => 'this is an example of too long password',
|
|
|
|
'loginname' => 'this is an example of too long loginname',
|
|
|
|
'name' => 'valid name',
|
|
|
|
'created' => 'invalid');
|
2006-10-09 22:00:14 +04:00
|
|
|
$user->setArray($set);
|
|
|
|
$email = $user->Email;
|
2007-01-21 21:31:51 +03:00
|
|
|
$email->address = 'zYne@invalid';
|
2006-10-09 22:00:14 +04:00
|
|
|
|
|
|
|
$this->assertTrue($user->getModified() == $set);
|
|
|
|
|
|
|
|
$validator = new Doctrine_Validator();
|
|
|
|
$validator->validateRecord($user);
|
|
|
|
|
|
|
|
|
2007-01-21 21:31:51 +03:00
|
|
|
$stack = $user->errorStack();
|
2006-10-09 22:00:14 +04:00
|
|
|
|
|
|
|
$this->assertTrue($stack instanceof Doctrine_Validator_ErrorStack);
|
2006-10-10 20:15:43 +04:00
|
|
|
$this->assertTrue(in_array('length', $stack['loginname']));
|
|
|
|
$this->assertTrue(in_array('length', $stack['password']));
|
|
|
|
$this->assertTrue(in_array('type', $stack['created']));
|
2006-10-09 22:00:14 +04:00
|
|
|
|
|
|
|
$validator->validateRecord($email);
|
2007-01-21 21:31:51 +03:00
|
|
|
$stack = $email->errorStack();
|
2006-10-10 20:15:43 +04:00
|
|
|
$this->assertTrue(in_array('email', $stack['address']));
|
2007-01-21 21:31:51 +03:00
|
|
|
$email->address = 'arnold@example.com';
|
2006-10-09 22:00:14 +04:00
|
|
|
|
|
|
|
$validator->validateRecord($email);
|
2007-01-21 21:31:51 +03:00
|
|
|
$stack = $email->errorStack();
|
2006-10-09 22:00:14 +04:00
|
|
|
|
2006-10-10 20:15:43 +04:00
|
|
|
$this->assertTrue(in_array('unique', $stack['address']));
|
2006-10-09 22:00:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the Email validator. (Doctrine_Validator_Email)
|
|
|
|
*/
|
|
|
|
public function testIsValidEmail() {
|
|
|
|
|
|
|
|
$validator = new Doctrine_Validator_Email();
|
|
|
|
|
|
|
|
$email = $this->connection->create("Email");
|
|
|
|
$this->assertFalse($validator->validate($email,"address","example@example",null));
|
|
|
|
$this->assertFalse($validator->validate($email,"address","example@@example",null));
|
|
|
|
$this->assertFalse($validator->validate($email,"address","example@example.",null));
|
|
|
|
$this->assertFalse($validator->validate($email,"address","example@e..",null));
|
|
|
|
|
|
|
|
$this->assertFalse($validator->validate($email,"address","example@e..",null));
|
|
|
|
|
|
|
|
$this->assertTrue($validator->validate($email,"address","null@pookey.co.uk",null));
|
|
|
|
$this->assertTrue($validator->validate($email,"address","null@pookey.com",null));
|
|
|
|
$this->assertTrue($validator->validate($email,"address","null@users.doctrine.pengus.net",null));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests saving records with invalid attributes.
|
|
|
|
*/
|
|
|
|
public function testSave() {
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, true);
|
2007-02-17 15:38:02 +03:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_AUTO_LENGTH_VLD, true);
|
2006-10-09 22:00:14 +04:00
|
|
|
$user = $this->connection->getTable("User")->find(4);
|
|
|
|
try {
|
|
|
|
$user->name = "this is an example of too long name not very good example but an example nevertheless";
|
|
|
|
$user->save();
|
|
|
|
} catch(Doctrine_Validator_Exception $e) {
|
|
|
|
$this->assertEqual($e->count(), 1);
|
|
|
|
$invalidRecords = $e->getInvalidRecords();
|
|
|
|
$this->assertEqual(count($invalidRecords), 1);
|
2007-01-21 21:31:51 +03:00
|
|
|
$stack = $invalidRecords[0]->errorStack();
|
2006-10-10 20:15:43 +04:00
|
|
|
$this->assertTrue(in_array('length', $stack['name']));
|
2006-10-09 22:00:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$user = $this->connection->create("User");
|
|
|
|
$user->Email->address = "jackdaniels@drinkmore.info...";
|
2007-02-17 15:38:02 +03:00
|
|
|
$user->name = "this is an example of too long user name not very good example but an example nevertheless";
|
2006-10-09 22:00:14 +04:00
|
|
|
$user->save();
|
|
|
|
$this->fail();
|
|
|
|
} catch(Doctrine_Validator_Exception $e) {
|
|
|
|
$this->pass();
|
|
|
|
$a = $e->getInvalidRecords();
|
2007-03-28 15:08:00 +04:00
|
|
|
//var_dump($a[1]->getErrorStack());
|
2006-10-09 22:00:14 +04:00
|
|
|
}
|
|
|
|
|
2007-03-28 15:08:00 +04:00
|
|
|
$this->assertTrue(is_array($a));
|
|
|
|
//var_dump(array_search($user, $a));
|
|
|
|
$emailStack = $user->Email->errorStack();
|
|
|
|
$userStack = $user->errorStack();
|
|
|
|
//var_dump($userStack);
|
2006-10-09 22:00:14 +04:00
|
|
|
|
2006-10-10 20:15:43 +04:00
|
|
|
$this->assertTrue(in_array('email', $emailStack['address']));
|
|
|
|
$this->assertTrue(in_array('length', $userStack['name']));
|
2006-10-09 22:00:14 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, false);
|
2007-02-17 15:38:02 +03:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_AUTO_LENGTH_VLD, false);
|
2006-10-09 22:00:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-10-11 20:24:18 +04:00
|
|
|
* Tests whether the validate() callback works correctly
|
2006-10-09 22:00:14 +04:00
|
|
|
* in descendants of Doctrine_Record.
|
|
|
|
*/
|
2006-10-11 20:24:18 +04:00
|
|
|
public function testValidationHooks() {
|
2006-10-09 22:00:14 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, true);
|
2006-10-11 20:24:18 +04:00
|
|
|
|
|
|
|
// Tests validate() and validateOnInsert()
|
|
|
|
$user = new User();
|
2006-10-09 22:00:14 +04:00
|
|
|
try {
|
|
|
|
$user->name = "I'm not The Saint";
|
2006-10-11 20:24:18 +04:00
|
|
|
$user->password = "1234";
|
2006-10-09 22:00:14 +04:00
|
|
|
$user->save();
|
|
|
|
} catch(Doctrine_Validator_Exception $e) {
|
|
|
|
$this->assertEqual($e->count(), 1);
|
|
|
|
$invalidRecords = $e->getInvalidRecords();
|
|
|
|
$this->assertEqual(count($invalidRecords), 1);
|
2007-01-21 21:31:51 +03:00
|
|
|
|
|
|
|
$stack = $invalidRecords[0]->errorStack();
|
2006-10-11 20:24:18 +04:00
|
|
|
|
|
|
|
$this->assertEqual($stack->count(), 2);
|
|
|
|
$this->assertTrue(in_array('notTheSaint', $stack['name'])); // validate() hook constraint
|
|
|
|
$this->assertTrue(in_array('pwNotTopSecret', $stack['password'])); // validateOnInsert() hook constraint
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests validateOnUpdate()
|
|
|
|
$user = $this->connection->getTable("User")->find(4);
|
|
|
|
try {
|
|
|
|
$user->name = "The Saint"; // Set correct name
|
|
|
|
$user->password = "Top Secret"; // Set correct password
|
|
|
|
$user->loginname = "Somebody"; // Wrong login name!
|
|
|
|
$user->save();
|
|
|
|
$this->fail();
|
|
|
|
} catch(Doctrine_Validator_Exception $e) {
|
|
|
|
$invalidRecords = $e->getInvalidRecords();
|
|
|
|
$this->assertEqual(count($invalidRecords), 1);
|
|
|
|
|
2007-01-21 21:31:51 +03:00
|
|
|
$stack = $invalidRecords[0]->errorStack();
|
2006-10-09 22:00:14 +04:00
|
|
|
|
|
|
|
$this->assertEqual($stack->count(), 1);
|
2006-10-11 20:24:18 +04:00
|
|
|
$this->assertTrue(in_array('notNobody', $stack['loginname'])); // validateOnUpdate() hook constraint
|
2006-10-09 22:00:14 +04:00
|
|
|
}
|
2006-10-10 20:15:43 +04:00
|
|
|
|
2006-10-11 20:24:18 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests whether the validateOnInsert() callback works correctly
|
|
|
|
* in descendants of Doctrine_Record.
|
|
|
|
*/
|
|
|
|
public function testHookValidateOnInsert() {
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, true);
|
|
|
|
|
|
|
|
$user = new User();
|
|
|
|
$user->password = "1234";
|
|
|
|
|
2006-10-10 20:15:43 +04:00
|
|
|
try {
|
|
|
|
$user->save();
|
|
|
|
$this->fail();
|
2006-10-11 20:24:18 +04:00
|
|
|
} catch (Doctrine_Validator_Exception $ex) {
|
2007-01-21 21:31:51 +03:00
|
|
|
$errors = $user->errorStack();
|
2006-10-11 20:24:18 +04:00
|
|
|
$this->assertTrue(in_array('pwNotTopSecret', $errors['password']));
|
2006-10-10 20:15:43 +04:00
|
|
|
}
|
|
|
|
|
2006-10-09 22:00:14 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, false);
|
|
|
|
}
|
2007-03-28 17:31:54 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
public function testIssue()
|
|
|
|
{
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, true);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$person = new ValidatorTest_Person();
|
|
|
|
$person->name = ''; // will raise a validation exception since name must be 'notblank'
|
|
|
|
$person->is_football_player = true;
|
|
|
|
|
|
|
|
$person->ValidatorTest_FootballPlayer->team_name = 'liverpool';
|
|
|
|
$person->ValidatorTest_FootballPlayer->goals_count = 2;
|
|
|
|
|
|
|
|
$person->save();
|
|
|
|
}
|
|
|
|
catch(Doctrine_Validator_Exception $e) {
|
|
|
|
$this->fail("test");
|
|
|
|
//var_dump($person->getErrorStack());
|
|
|
|
//var_dump($person->ValidatorTest_FootballPlayer->getErrorStack());
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, false);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
* @todo move to a separate test file (tests/Validator/UniqueTestCase) .
|
|
|
|
*/
|
2007-04-12 17:37:45 +04:00
|
|
|
public function testSetSameUniqueValueOnSameRecordThrowsNoException()
|
2007-03-28 17:31:54 +04:00
|
|
|
{
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, true);
|
|
|
|
|
|
|
|
$r = new ValidatorTest_Person();
|
2007-04-12 12:38:59 +04:00
|
|
|
$r->identifier = '1234';
|
2007-03-28 17:31:54 +04:00
|
|
|
$r->save();
|
|
|
|
|
|
|
|
$r = $this->connection->getTable('ValidatorTest_Person')->findAll()->getFirst();
|
2007-04-12 12:38:59 +04:00
|
|
|
$r->identifier = 1234;
|
2007-03-28 17:31:54 +04:00
|
|
|
try {
|
|
|
|
$r->save();
|
|
|
|
}
|
2007-04-12 17:37:45 +04:00
|
|
|
catch (Doctrine_Validator_Exception $e) {
|
2007-03-28 17:31:54 +04:00
|
|
|
$this->fail("Validator exception raised without reason!");
|
|
|
|
}
|
|
|
|
|
2007-04-12 17:37:45 +04:00
|
|
|
$r->delete(); // clean up
|
|
|
|
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetSameUniqueValueOnDifferentRecordThrowsException()
|
|
|
|
{
|
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, true);
|
|
|
|
|
|
|
|
$r = new ValidatorTest_Person();
|
|
|
|
$r->identifier = '1234';
|
|
|
|
$r->save();
|
|
|
|
|
|
|
|
$r = new ValidatorTest_Person();
|
|
|
|
$r->identifier = 1234;
|
|
|
|
try {
|
|
|
|
$r->save();
|
|
|
|
$this->fail("No validator exception thrown on unique validation.");
|
|
|
|
} catch (Doctrine_Validator_Exception $e) {
|
|
|
|
$this->pass();
|
|
|
|
}
|
|
|
|
$r->delete(); // clean up
|
|
|
|
|
2007-03-28 17:31:54 +04:00
|
|
|
$this->manager->setAttribute(Doctrine::ATTR_VLD, false);
|
|
|
|
}
|
2006-10-09 22:00:14 +04:00
|
|
|
}
|
|
|
|
?>
|