| 1 |
<?php |
<?php |
| 2 |
// $Id$ |
// $Id: signup_event_none.inc,v 1.1 2007/07/31 00:08:31 dww Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 26 |
function signup_format_date($node) { |
function signup_format_date($node) { |
| 27 |
return t('[Untimed]'); |
return t('[Untimed]'); |
| 28 |
} |
} |
| 29 |
|
|
| 30 |
|
/** |
| 31 |
|
* Is this node type date-enabled? |
| 32 |
|
* |
| 33 |
|
* @return Bool: Always return FALSE in this backend |
| 34 |
|
*/ |
| 35 |
|
function signup_node_type_has_date($type) { |
| 36 |
|
return FALSE; |
| 37 |
|
} |
| 38 |
|
|
| 39 |
|
/** |
| 40 |
|
* Is this specific node date-enabled? |
| 41 |
|
* |
| 42 |
|
* @return Bool: Always return FALSE in this backend |
| 43 |
|
*/ |
| 44 |
|
function signup_node_has_date($node) { |
| 45 |
|
return FALSE; |
| 46 |
|
} |