| 1 |
<?php // $Id: news.module,v 1.13 2009/03/19 19:03:13 vauxia Exp $ |
<?php // $Id: news.module,v 1.15 2009/05/15 14:35:15 vauxia Exp $ |
| 2 |
|
|
| 3 |
/** |
/** |
| 4 |
* @file |
* @file |
| 22 |
} |
} |
| 23 |
|
|
| 24 |
/** |
/** |
|
* Implementation of hook_elements(). |
|
|
* Add a message element for the send form. |
|
|
*/ |
|
|
function news_elements() { |
|
|
return array( |
|
|
'news_message' => array( |
|
|
'#input' => TRUE, |
|
|
'#process' => array('send_process'), |
|
|
'#after_build' => array('send_set_value'), |
|
|
), |
|
|
); |
|
|
} |
|
|
|
|
|
/** |
|
| 25 |
* Implementation of Send module's hook_send_profile_info(). |
* Implementation of Send module's hook_send_profile_info(). |
| 26 |
*/ |
*/ |
| 27 |
function news_send_profile_info() { |
function news_send_profile_info() { |