1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/models/Contact.php
Hillel Coren 2b5f42e5ac bug fixes
2013-12-30 22:17:45 +02:00

81 lines
1.4 KiB
PHP
Executable File

<?php
class Contact extends EntityModel
{
protected $hidden = array('id', 'cliend_id', 'created_at', 'updated_at', 'deleted_at', 'last_login');
public static $fieldFirstName = 'Contact - First Name';
public static $fieldLastName = 'Contact - Last Name';
public static $fieldEmail = 'Contact - Email';
public static $fieldPhone = 'Contact - Phone';
public function client()
{
return $this->belongsTo('Client');
}
public function getPersonType()
{
return PERSON_CONTACT;
}
/*
public function getLastLogin()
{
if ($this->last_login == '0000-00-00 00:00:00')
{
return '---';
}
else
{
return $this->last_login->format('m/d/y h:i a');
}
}
*/
public function getFullName()
{
if (!$this->first_name && !$this->last_name)
{
return $this->email;
}
$fullName = $this->first_name . ' ' . $this->last_name;
if ($fullName == ' ')
{
return '';
}
else
{
return $fullName;
}
}
public function getDetails()
{
$str = '';
if ($this->first_name || $this->last_name)
{
$str .= '<b>' . $this->first_name . ' ' . $this->last_name . '</b><br/>';
}
if ($this->email)
{
$str .= '<i class="fa fa-envelope" style="width: 20px"></i>' . HTML::mailto($this->email, $this->email) . '<br/>';
}
if ($this->phone)
{
$str .= '<i class="fa fa-phone" style="width: 20px"></i>' . Utils::formatPhoneNumber($this->phone);
}
if ($str)
{
$str = '<p>' . $str . '</p>';
}
return $str;
}
}