Как обратиться к BaseUsers.class.php в действии? - PullRequest
0 голосов
/ 21 августа 2011

Если я буду ссылаться на UsersTable.class.php в действии, я использую

Doctrine::getTable('Users')->getCity($test);

В BaseUsers.class.php у меня есть:

@method Users setCity()     Sets the current record's "city" value

Как я могу обратиться к этомуфайл в action.class.php?

, кстати, как я могу восстановить в Users.class.php?

спасибо за помощь!

1 Ответ

1 голос
/ 22 августа 2011

город является свойством одного объекта .. с таблицей вы получите коллекцию.

что вы хотите:

$users = UsersTable::getInstance()->findByCity('name');

или

$user = UsersTable::getInstance()->find(1); //get your first user
$user->setCity('Zurich'); // set the city-property of the first user to Zurich
$user->getCity(); // will return Zurich
...