| 1 |
<?php |
<?php |
| 2 |
// $Id: jlightbox.module,v 1.8 2008/06/04 02:27:05 sun Exp $ |
// $Id: jlightbox.module,v 1.9 2008/10/15 08:14:30 sun Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 76 |
foreach ($rules as $ruleid => $rulename) { |
foreach ($rules as $ruleid => $rulename) { |
| 77 |
$formatters['jlightbox]['. $rulename .'][gallery'] = array( |
$formatters['jlightbox]['. $rulename .'][gallery'] = array( |
| 78 |
'label' => 'jLightbox: '. $rulename .' gallery', |
'label' => 'jLightbox: '. $rulename .' gallery', |
| 79 |
'field types' => array('image'), |
'field types' => array('image', 'filefield'), |
| 80 |
); |
); |
| 81 |
$formatters['jlightbox]['. $rulename .'][single'] = array( |
$formatters['jlightbox]['. $rulename .'][single'] = array( |
| 82 |
'label' => 'jLightbox: '. $rulename, |
'label' => 'jLightbox: '. $rulename, |
| 83 |
'field types' => array('image'), |
'field types' => array('image', 'filefield'), |
| 84 |
); |
); |
| 85 |
} |
} |
| 86 |
|
|