| 1 |
<?php |
<?php |
| 2 |
// $Id$ |
// $Id: drutex_verbatim.inc,v 1.8 2006/09/06 02:25:41 dfg 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('Provide verbatim environments (these will be hidden by all further DruTeX parsing).'), |
'description' => t('Provide verbatim environments (these will be hidden by all further DruTeX parsing).'), |
| 18 |
'toggle' => false, |
'toggle' => FALSE, |
| 19 |
'weight' => 20 |
'weight' => 20 |
| 20 |
); |
); |
| 21 |
} |
} |
| 24 |
* Implementation of subhook_defaults(). |
* Implementation of subhook_defaults(). |
| 25 |
*/ |
*/ |
| 26 |
function drutex_verbatim_defaults() { |
function drutex_verbatim_defaults() { |
| 27 |
$D['drutex_verbatim_active'] = true; |
$D['drutex_verbatim_active'] = TRUE; |
| 28 |
return $D; |
return $D; |
| 29 |
} |
} |
| 30 |
|
|