本文整理匯總了PHP中Contacts::getOwner方法的典型用法代碼示例。如果您正苦於以下問題:PHP Contacts::getOwner方法的具體用法?PHP Contacts::getOwner怎麽用?PHP Contacts::getOwner使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Contacts
的用法示例。
在下文中一共展示了Contacts::getOwner方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: notify
/** Provide a notification for an object
*/
protected function notify($objecttype, $broadperiod, $institution, $createdBy, $data)
{
if ($institution === 'PUBLIC') {
$users = new Users();
$responsible = $users->fetchRow('id = ' . $createdBy);
$to = array(array('email' => $responsible->email, 'name' => $responsible->fullname));
} elseif (in_array($institution, array('PAS', 'DCMS', 'RAH', 'BM'))) {
$to = array(array('email' => 'info@finds.org.uk', 'name' => 'Central Unit'));
} else {
$responsible = new Contacts();
$to = $responsible->getOwner($data['comment_findID']);
if (empty($to)) {
$to = array(array('email' => 'info@finds.org.uk', 'name' => 'Central Unit'));
}
}
$cc = $this->_getAdviser($objecttype, $broadperiod);
if ($this->_user) {
$from = array(array('email' => $this->_user->email, 'name' => $this->_user->fullname));
} else {
$from = array(array('email' => $data['comment_author_email'], 'name' => $data['comment_author']));
}
$assignData = array_merge($to['0'], $data);
$this->_helper->mailer($assignData, 'errorSubmission', $to, $cc, $from);
}
示例2: getContacts
/** Get the contact responsible
* @access public
* @return array
*/
public function getContacts()
{
$contacts = new Contacts();
return $contacts->getOwner($this->getFindID());
}