| 1 |
<?php |
<?php |
| 2 |
// $Id: drutex_numbering.inc,v 1.2 2006/09/06 02:25:41 dfg Exp $ |
// $Id: drutex_numbering.inc,v 1.3 2007/04/25 14:46:28 darthsteven Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 15 |
return (object) array( |
return (object) array( |
| 16 |
'title' => t('Numbering / Referencing'), |
'title' => t('Numbering / Referencing'), |
| 17 |
'description' => t('Assists automatic numbering of tex, equation und equations environments.'), |
'description' => t('Assists automatic numbering of tex, equation und equations environments.'), |
| 18 |
'toggle' => false, |
'toggle' => FALSE, |
| 19 |
'weight' => 20 |
'weight' => 20 |
| 20 |
); |
); |
| 21 |
} |
} |
| 22 |
|
|
| 23 |
|
function drutex_numbering_filter_tips($delta, $format, $long = FALSE) { |
| 24 |
|
return t('Assists automatic numbering of tex, equation, and equations environments.'); |
| 25 |
|
} |
| 26 |
|
|
| 27 |
/** |
/** |
| 28 |
* Implementation of subhook_defaults(). |
* Implementation of subhook_defaults(). |
| 29 |
*/ |
*/ |
| 30 |
function drutex_numbering_defaults() { |
function drutex_numbering_defaults() { |
| 31 |
$D['drutex_numbering_active'] = true; |
$D['drutex_numbering_active'] = TRUE; |
| 32 |
return $D; |
return $D; |
| 33 |
} |
} |
| 34 |
|
|