webgui/www/extras/yui/examples/editor/assets/exampleslib.inc
JT Smith 20f8df1291 upgrading to YUI 2.6
data tables are going to need some work yet, but the other stuff seems to be working 100%
2008-10-22 23:53:29 +00:00

16 lines
265 B
PHP

<?php
function getRawEditorData($paramName) {
if ($paramName) {
if (isset($_POST[$paramName])) {
return $_POST[$paramName];
} else if (isset($_GET[$paramName])) {
return $_GET[$paramName];
} else {
return null;
}
} else {
return null;
}
}
?>