blob: 4c0573e3fbc614f8d0795c92d50409cc3cc2a5c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* @package contact
* @subpackage classes
*/
namespace Bitweaver\Contact;
use Bitweaver\Liberty\LibertyXref;
class ContactXref extends LibertyXref {
protected $mContentTypeGuid = 'contact';
public function __construct( $iXrefId = NULL ) {
parent::__construct( $iXrefId );
}
}
|