blob: 8e173de4eef89fbf3f14c5ece97d8e90fb56fc9f [file] [log] [blame]
<?php
class Contacts extends BaseContacts
{
public function getName() {
return $this->getFirstName()." ".$this->getLast_Name();
}
public function getPhoneNumbers() {
$query = Doctrine_Query::create()
->from("CellPhones c")
->where("c.contact_id = ?", $this->getId());
$phones = Doctrine::getTable("CellPhones")->getPhoneNumbers($query);
^
}
}