summaryrefslogtreecommitdiff
path: root/httemplate/elements/htmlarea.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/htmlarea.html')
-rw-r--r--httemplate/elements/htmlarea.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/httemplate/elements/htmlarea.html b/httemplate/elements/htmlarea.html
deleted file mode 100644
index f00c773..0000000
--- a/httemplate/elements/htmlarea.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<%doc>
-
-Example:
-
- include('/elements/htmlarea.html',
- 'field' => 'fieldname',
- 'curr_value' => $curr_value,
- 'height' => 800,
- );
-
-</%doc>
-
-% #init
-<SCRIPT TYPE="text/javascript" src="<% $p %>elements/fckeditor/fckeditor.js">
-</SCRIPT>
-
-% #editor
-<SCRIPT TYPE="text/javascript">
-
- var oFCKeditor = new FCKeditor('<% $opt{'field'} %>');
- oFCKeditor.Value = <% $opt{'curr_value'} |js_string %>;
-
- oFCKeditor.BasePath = '<% $p %>elements/fckeditor/';
- oFCKeditor.Config['SkinPath'] = '<% $p %>elements/fckeditor/editor/skins/silver/';
-% if ( $opt{'width'} ) {
- oFCKeditor.Width = '<% $opt{'width'} %>';
-% }
- oFCKeditor.Height = '<% $opt{'height'} || 420 %>';
- oFCKeditor.Config['StartupFocus'] = true;
- oFCKeditor.Config['EnterMode'] = 'br';
-
- oFCKeditor.Create();
-
-</SCRIPT>
-
-<%init>
-
-my %opt = @_;
-
-</%init>