blob: a88d2bd2491d53d82cb0ffe7bde38f9dee2e2bce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* @package contact
* @subpackage classes
*/
namespace Bitweaver\Contact;
use Bitweaver\Liberty\LibertyXrefType;
class ContactXrefType extends LibertyXrefType {
public static function getContactXrefTypeList( $pOptionHash = NULL ) {
if( $pOptionHash === NULL ) {
$pOptionHash = [];
}
$pOptionHash['content_type_guid'] = 'contact';
return LibertyXrefType::getXrefTypeList( $pOptionHash );
}
}
|