aboutsummaryrefslogtreecommitdiff
path: root/mod/tinymce/views
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-03 17:53:05 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-03 17:53:05 +0000
commit4766f36a4d74924f21ff329c4318ce4e069ffa04 (patch)
tree969b84632f2a8b0db79788a8a6db8e41d63e5cb4 /mod/tinymce/views
parent57a217fd6b708844407486046a1faa23b46cac08 (diff)
downloadelgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.gz
elgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.bz2
Pulled in the interface changes.
git-svn-id: http://code.elgg.org/elgg/trunk@5257 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/tinymce/views')
-rw-r--r--mod/tinymce/views/default/embed/addcontentjs.php4
-rw-r--r--mod/tinymce/views/default/input/longtext.php69
-rw-r--r--mod/tinymce/views/default/tinymce/css.php17
3 files changed, 90 insertions, 0 deletions
diff --git a/mod/tinymce/views/default/embed/addcontentjs.php b/mod/tinymce/views/default/embed/addcontentjs.php
new file mode 100644
index 000000000..90ff6a348
--- /dev/null
+++ b/mod/tinymce/views/default/embed/addcontentjs.php
@@ -0,0 +1,4 @@
+
+ if(window.tinyMCE)
+ window.tinyMCE.execCommand("mceInsertContent",true,content);
+ \ No newline at end of file
diff --git a/mod/tinymce/views/default/input/longtext.php b/mod/tinymce/views/default/input/longtext.php
new file mode 100644
index 000000000..e49c6190e
--- /dev/null
+++ b/mod/tinymce/views/default/input/longtext.php
@@ -0,0 +1,69 @@
+<?php
+
+ /**
+ * Elgg long text input with the tinymce text editor intacts
+ * Displays a long text input field
+ *
+ * @package ElggTinyMCE
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008-2010
+ * @link http://elgg.org/
+ *
+ * @uses $vars['value'] The current value, if any
+ * @uses $vars['js'] Any Javascript to enter into the input tag
+ * @uses $vars['internalname'] The name of the input field
+ *
+ */
+
+ global $tinymce_js_loaded;
+
+ $input = rand(0,9999);
+
+ if (!isset($tinymce_js_loaded)) $tinymce_js_loaded = false;
+
+ if (!$tinymce_js_loaded) {
+
+?>
+<!-- include tinymce -->
+<script language="javascript" type="text/javascript" src="<?php echo $vars['url']; ?>mod/tinymce/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
+<!-- intialise tinymce, you can find other configurations here http://wiki.moxiecode.com/examples/tinymce/installation_example_01.php -->
+<script language="javascript" type="text/javascript">
+ tinyMCE.init({
+ mode : "textareas",
+ theme : "advanced",
+ relative_urls : false,
+ theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,bullist,numlist,undo,redo,link,unlink,image,blockquote,code",
+ theme_advanced_buttons2 : "",
+ theme_advanced_buttons3 : "",
+ theme_advanced_toolbar_location : "top",
+ theme_advanced_toolbar_align : "left",
+ theme_advanced_statusbar_location : "bottom",
+ theme_advanced_resizing : true,
+ extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name|style],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]"
+});
+function toggleEditor(id) {
+if (!tinyMCE.get(id))
+ tinyMCE.execCommand('mceAddControl', false, id);
+else
+ tinyMCE.execCommand('mceRemoveControl', false, id);
+}
+</script>
+<?php
+
+ $tinymce_js_loaded = true;
+ }
+
+?>
+
+<!-- show the textarea -->
+<textarea class="input-textarea" name="<?php echo $vars['internalname']; ?>" <?php echo $vars['js']; ?>><?php echo htmlentities($vars['value'], null, 'UTF-8'); ?></textarea>
+<div class="toggle_editor_container"><a class="toggle_editor" href="javascript:toggleEditor('<?php echo $vars['internalname']; ?>');"><?php echo elgg_echo('tinymce:remove'); ?></a></div>
+
+<script type="text/javascript">
+ $(document).ready(function() {
+ $('textarea').parents('form').submit(function() {
+ tinyMCE.triggerSave();
+ });
+ });
+</script> \ No newline at end of file
diff --git a/mod/tinymce/views/default/tinymce/css.php b/mod/tinymce/views/default/tinymce/css.php
new file mode 100644
index 000000000..121c24440
--- /dev/null
+++ b/mod/tinymce/views/default/tinymce/css.php
@@ -0,0 +1,17 @@
+blockquote {
+ margin:10px;
+ border:1px solid #efefef;
+ padding:4px;
+}
+
+strong {
+ font-weight:bold;
+}
+
+ul {
+ list-style: disc;
+}
+
+ol {
+ list-style: decimal;
+} \ No newline at end of file