30 lines
435 B
PHP
30 lines
435 B
PHP
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* @file
|
|
* Hooks provided by the Locale module.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup hooks
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* Allows modules to define their own text groups that can be translated.
|
|
*
|
|
* @param $op
|
|
* Type of operation. Currently, only supports 'groups'.
|
|
*/
|
|
function hook_locale($op = 'groups') {
|
|
switch ($op) {
|
|
case 'groups':
|
|
return array('custom' => t('Custom'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @} End of "addtogroup hooks".
|
|
*/
|