|
Revision 24773, 1.0 kB
(checked in by rambo, 8 months ago)
|
scripted whitespace normalization.
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
class net_nemein_attention_click_dba extends midcom_core_dbaobject |
|---|
| 16 |
{ |
|---|
| 17 |
var $__midcom_class_name__ = __CLASS__; |
|---|
| 18 |
var $__mgdschema_class_name__ = 'net_nemein_attention_click'; |
|---|
| 19 |
|
|---|
| 20 |
function __construct($id = null) |
|---|
| 21 |
{ |
|---|
| 22 |
$this->_use_rcs = false; |
|---|
| 23 |
$this->_use_activitystream = false; |
|---|
| 24 |
return parent::__construct($id); |
|---|
| 25 |
} |
|---|
| 26 |
|
|---|
| 27 |
static function new_query_builder() |
|---|
| 28 |
{ |
|---|
| 29 |
return $_MIDCOM->dbfactory->new_query_builder(__CLASS__); |
|---|
| 30 |
} |
|---|
| 31 |
|
|---|
| 32 |
static function new_collector($domain, $value) |
|---|
| 33 |
{ |
|---|
| 34 |
return $_MIDCOM->dbfactory->new_collector(__CLASS__, $domain, $value); |
|---|
| 35 |
} |
|---|
| 36 |
} |
|---|
| 37 |
?> |
|---|