source: extensions/Flash_Gallery/modules/Carousel/xml/before_header.inc.php @ 3531

Last change on this file since 3531 was 3531, checked in by tiico, 15 years ago

First revision (for testing)
Only in French (translation to be done)

File size: 817 bytes
Line 
1<?php
2// File to personalize datas for the header xml (ex. color...)
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5$rotation = array( '', 'auto', 'mouse', 'keyboard');
6$view_point = array( '', 'none', 'mouse', 'keyboard');
7$blur_quality = array('', '1', '2', '3');
8$position1 = array('', 'above', 'below');
9$position2 = array('', 'left', 'center' ,'right');
10
11$module['ext_datas']['rotation'] = $rotation[$module['ext_datas']['rotation']];
12$module['ext_datas']['view_point'] = $view_point[$module['ext_datas']['view_point']];
13$module['ext_datas']['blur_quality'] = $blur_quality[$module['ext_datas']['blur_quality']];
14$module['ext_datas']['position1'] = $position1[$module['ext_datas']['position1']];
15$module['ext_datas']['position2'] = $position2[$module['ext_datas']['position2']];
16
17
18?>
Note: See TracBrowser for help on using the repository browser.