| 1 |
909
|
doc
|
<?php
|
| 2 |
|
|
/**
|
| 3 |
|
|
*
|
| 4 |
1273
|
Luisehahne
|
* @category framework
|
| 5 |
|
|
* @package include
|
| 6 |
|
|
* @author Christophe Dolivet (EditArea), Christian Sommer (WB wrapper)
|
| 7 |
|
|
* @author WebsiteBaker Project
|
| 8 |
|
|
* @copyright 2004-2009, Ryan Djurovich
|
| 9 |
1349
|
Luisehahne
|
* @copyright 2009-2011, Website Baker Org. e.V.
|
| 10 |
1273
|
Luisehahne
|
* @link http://www.websitebaker2.org/
|
| 11 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
| 12 |
|
|
* @platform WebsiteBaker 2.8.x
|
| 13 |
1374
|
Luisehahne
|
* @requirements PHP 5.2.2 and higher
|
| 14 |
1273
|
Luisehahne
|
* @version $Id$
|
| 15 |
|
|
* @filesource $HeadURL$
|
| 16 |
|
|
* @lastmodified $Date$
|
| 17 |
909
|
doc
|
*
|
| 18 |
1273
|
Luisehahne
|
*/
|
| 19 |
|
|
|
| 20 |
1188
|
Luisehahne
|
function loader_help()
|
| 21 |
|
|
{
|
| 22 |
|
|
?>
|
| 23 |
|
|
<script type="text/javascript">
|
| 24 |
|
|
var head= document.getElementsByTagName('head')[0];
|
| 25 |
|
|
var script= document.createElement('script');
|
| 26 |
|
|
script.type= 'text/javascript';
|
| 27 |
|
|
script.src= '<?php print WB_URL; ?>/include/editarea/edit_area_full.js';
|
| 28 |
|
|
head.appendChild(script);
|
| 29 |
|
|
</script>
|
| 30 |
|
|
<?php
|
| 31 |
909
|
doc
|
|
| 32 |
1188
|
Luisehahne
|
}
|
| 33 |
|
|
|
| 34 |
909
|
doc
|
if (!function_exists('registerEditArea')) {
|
| 35 |
1274
|
Luisehahne
|
function registerEditArea(
|
| 36 |
|
|
$id = 'code_area',
|
| 37 |
|
|
$syntax = 'php',
|
| 38 |
|
|
$syntax_selection = true,
|
| 39 |
|
|
$allow_resize = 'both',
|
| 40 |
|
|
$allow_toggle = true,
|
| 41 |
|
|
$start_highlight = true,
|
| 42 |
|
|
$min_width = 600,
|
| 43 |
|
|
$min_height = 300,
|
| 44 |
|
|
$toolbar = 'default'
|
| 45 |
|
|
)
|
| 46 |
1188
|
Luisehahne
|
{
|
| 47 |
|
|
|
| 48 |
909
|
doc
|
// set default toolbar if no user defined was specified
|
| 49 |
|
|
if ($toolbar == 'default') {
|
| 50 |
|
|
$toolbar = 'search, fullscreen, |, undo, redo, |, select_font, syntax_selection, |, highlight, reset_highlight, |, help';
|
| 51 |
|
|
$toolbar = (!$syntax_selection) ? str_replace('syntax_selection,', '', $toolbar) : $toolbar;
|
| 52 |
|
|
}
|
| 53 |
1188
|
Luisehahne
|
|
| 54 |
909
|
doc
|
// check if used Website Baker backend language is supported by EditArea
|
| 55 |
|
|
$language = 'en';
|
| 56 |
1274
|
Luisehahne
|
if (defined('LANGUAGE') && file_exists(dirname(__FILE__) . '/langs/' . strtolower(LANGUAGE) . '.js'))
|
| 57 |
|
|
{
|
| 58 |
909
|
doc
|
$language = strtolower(LANGUAGE);
|
| 59 |
|
|
}
|
| 60 |
|
|
|
| 61 |
|
|
// check if highlight syntax is supported by edit_area
|
| 62 |
|
|
$syntax = in_array($syntax, array('css', 'html', 'js', 'php', 'xml')) ? $syntax : 'php';
|
| 63 |
|
|
|
| 64 |
|
|
// check if resize option is supported by edit_area
|
| 65 |
|
|
$allow_resize = in_array($allow_resize, array('no', 'both', 'x', 'y')) ? $allow_resize : 'no';
|
| 66 |
|
|
|
| 67 |
|
|
// return the Javascript code
|
| 68 |
|
|
$result = <<< EOT
|
| 69 |
1188
|
Luisehahne
|
<script type="text/javascript">
|
| 70 |
909
|
doc
|
editAreaLoader.init({
|
| 71 |
1274
|
Luisehahne
|
id: '$id',
|
| 72 |
|
|
start_highlight: $start_highlight,
|
| 73 |
|
|
syntax: '$syntax',
|
| 74 |
|
|
min_width: $min_width,
|
| 75 |
|
|
min_height: $min_height,
|
| 76 |
|
|
allow_resize: '$allow_resize',
|
| 77 |
|
|
allow_toggle: $allow_toggle,
|
| 78 |
|
|
toolbar: '$toolbar',
|
| 79 |
|
|
language: '$language'
|
| 80 |
909
|
doc
|
});
|
| 81 |
|
|
</script>
|
| 82 |
|
|
EOT;
|
| 83 |
|
|
return $result;
|
| 84 |
|
|
}
|
| 85 |
|
|
}
|
| 86 |
|
|
|
| 87 |
|
|
if (!function_exists('getEditAreaSyntax')) {
|
| 88 |
|
|
function getEditAreaSyntax($file)
|
| 89 |
|
|
{
|
| 90 |
|
|
// returns the highlight scheme for edit_area
|
| 91 |
|
|
$syntax = 'php';
|
| 92 |
|
|
if (is_readable($file)) {
|
| 93 |
|
|
// extract file extension
|
| 94 |
|
|
$file_info = pathinfo($file);
|
| 95 |
|
|
|
| 96 |
|
|
switch ($file_info['extension']) {
|
| 97 |
|
|
case 'htm': case 'html': case 'htt':
|
| 98 |
|
|
$syntax = 'html';
|
| 99 |
|
|
break;
|
| 100 |
|
|
|
| 101 |
|
|
case 'css':
|
| 102 |
|
|
$syntax = 'css';
|
| 103 |
|
|
break;
|
| 104 |
|
|
|
| 105 |
|
|
case 'js':
|
| 106 |
|
|
$syntax = 'js';
|
| 107 |
|
|
break;
|
| 108 |
|
|
|
| 109 |
|
|
case 'xml':
|
| 110 |
|
|
$syntax = 'xml';
|
| 111 |
|
|
break;
|
| 112 |
|
|
|
| 113 |
|
|
case 'php': case 'php3': case 'php4': case 'php5':
|
| 114 |
|
|
$syntax = 'php';
|
| 115 |
|
|
break;
|
| 116 |
|
|
|
| 117 |
|
|
default:
|
| 118 |
|
|
$syntax = 'php';
|
| 119 |
|
|
break;
|
| 120 |
|
|
}
|
| 121 |
|
|
}
|
| 122 |
|
|
return $syntax ;
|
| 123 |
|
|
}
|
| 124 |
|
|
}
|
| 125 |
|
|
|
| 126 |
|
|
?>
|