123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * admin: A very limited theme with almost no features, to maximize screen real estate
- *
- * @version $Id: template.php,v 1.1 2007-08-20 19:43:07 marand Exp $
- * @copyright 2006-2007 OSI
- * @license CeCILL 2.0
- */
- function phptemplate_image_gallery($galleries, $images) {
- return _phptemplate_callback('image_gallery', array('galleries' => $galleries, 'images' => $images));
- }
- /**
- * Définition des régions, incluant les régions
- * usuelles et le top_menu
- *
- * @return array
- */
- function admin_regions()
- {
- return array
- (
- 'top_menu' => t('top menu'),
- 'left' => t('left sidebar'),
- 'right' => t('right sidebar'),
- 'content' => t('content'),
- 'header' => t('header'),
- 'footer' => t('footer'),
- );
- }
|