aboutsummaryrefslogtreecommitdiff
path: root/mod/tinymce/activate.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-07-06 05:59:11 +0200
committerSem <sembrestels@riseup.net>2012-07-06 05:59:11 +0200
commit8e3a2760ef88077aa04dc1905f5bce0348bdb3d7 (patch)
treed926b0be4705730677edc36368f2975242a47a3e /mod/tinymce/activate.php
parent0381efbd3bb6f38d53250a488b121e2ae36bc290 (diff)
downloadelgg-8e3a2760ef88077aa04dc1905f5bce0348bdb3d7.tar.gz
elgg-8e3a2760ef88077aa04dc1905f5bce0348bdb3d7.tar.bz2
Refs #1852. Added admin notice on activate.
Diffstat (limited to 'mod/tinymce/activate.php')
-rw-r--r--mod/tinymce/activate.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/mod/tinymce/activate.php b/mod/tinymce/activate.php
new file mode 100644
index 000000000..953e3c25b
--- /dev/null
+++ b/mod/tinymce/activate.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Prompt the user to install a tinymce language after activating
+ */
+
+if (elgg_get_config('language') != tinymce_get_site_language()) {
+ $message = elgg_echo('tinymce:lang_notice', array(
+ elgg_echo(elgg_get_config('language')),
+ "http://www.tinymce.com/i18n/index.php?ctrl=lang&act=download",
+ elgg_get_plugins_path() . "tinymce/vendor/tinymce/jscripts/tiny_mce",
+ elgg_add_action_tokens_to_url(elgg_normalize_url('action/admin/site/flush_cache')),
+ ));
+ elgg_add_admin_notice('tinymce_admin_notice_no_lang', $message);
+}