0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: javascript.php
<?php // (c) Copyright 2002-2015 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: javascript.php 55732 2015-06-20 16:27:55Z lindonb $ function prefs_javascript_list() { return array( 'javascript_cdn' => array( 'name' => tra('Use CDN for JavaScript'), 'description' => tra('Obtain jQuery and jQuery UI libraries through a content delivery network.'), 'type' => 'list', 'options' => array( 'none' => tra('None'), 'google' => tra('Google (supports SSL via HTTPS)'), 'jquery' => tra('jQuery'), ), 'default' => 'none', 'tags' => array('basic'), ), ); }