Contact.class.php
377 Bytes
<?php
namespace SH\Entities;
class Contact extends \Cpeople\Classes\Block\Object
{
use \Sh\Traits\FunctionName;
function getText()
{
return $this->{'~PREVIEW_TEXT'};
}
function getPhones()
{
return implode(', ', $this->getPropValue('PHONE'));
}
function getEmail()
{
return $this->getPropValue('EMAIL');
}
}