0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: jquery.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: jquery.php 33195 2011-03-02 17:43:40Z changi67 $ function prefs_jquery_list() { global $prefs; $jquery_effect_options = array( '' => tra('Default'), 'none' => tra('None'), 'slide' => tra('Slide'), 'fade' => tra('Fade'), ); if ($prefs['feature_jquery_ui'] == 'y') { $jquery_effect_options['blind_ui'] = tra('Blind (UI)'); $jquery_effect_options['clip_ui'] = tra('Clip (UI)'); $jquery_effect_options['drop_ui'] = tra('Drop (UI)'); $jquery_effect_options['explode_ui'] = tra('Explode (UI)'); $jquery_effect_options['fold_ui'] = tra('Fold (UI)'); $jquery_effect_options['puff_ui'] = tra('Puff (UI)'); $jquery_effect_options['slide_ui'] = tra('Slide (UI)'); } return array( 'jquery_effect' => array( 'name' => tra('Effect for modules'), 'type' => 'list', 'options' => $jquery_effect_options, 'help' => 'JQuery#Effects', ), 'jquery_effect_tabs' => array( 'name' => tra('Effect for tabs'), 'type' => 'list', 'options' => $jquery_effect_options, 'help' => 'JQuery#Effects', ), 'jquery_effect_speed' => array( 'name' => tra('Speed'), 'type' => 'list', 'options' => array( 'fast' => tra('Fast'), 'normal' => tra('Normal'), 'slow' => tra('Slow'), ), ), 'jquery_effect_direction' => array( 'name' => tra('Direction'), 'type' => 'list', 'options' => array( 'vertical' => tra('Vertical'), 'horizontal' => tra('Horizontal'), 'left' => tra('Left'), 'right' => tra('Right'), 'up' => tra('Up'), 'down' => tra('Down'), ), ), 'jquery_effect_tabs_speed' => array( 'name' => tra('Speed'), 'type' => 'list', 'options' => array( 'fast' => tra('Fast'), 'normal' => tra('Normal'), 'slow' => tra('Slow'), ), ), 'jquery_effect_tabs_direction' => array( 'name' => tra('Direction'), 'type' => 'list', 'options' => array( 'vertical' => tra('Vertical'), 'horizontal' => tra('Horizontal'), 'left' => tra('Left'), 'right' => tra('Right'), 'up' => tra('Up'), 'down' => tra('Down'), ), ), ); }